-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@inceptionstack/pi-hard-no",
"version": "1.2.1",
"type": "module",
"description": "Pi extension — automatic code review after every agent turn",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/inceptionstack/pi-hard-no.git"
},
"keywords": [
"pi",
"extension",
"code-review",
"ai",
"agent"
],
"files": [
"*.ts",
"default-review-rules.md",
"LICENSE",
"README.md"
],
"pi": {
"extensions": [
"./index.ts"
]
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@earendil-works/pi-coding-agent": "^0.74.0",
"@types/node": "^22.15.17",
"eslint": "^9.27.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^4.1.5"
}
}