-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "@czottmann/pi-automode",
"version": "1.11.0",
"description": "Claude Code-style auto mode guardrail for pi.",
"repository": {
"url": "https://github.com/czottmann/pi-automode"
},
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"pi",
"pi-extension",
"pi-package",
"auto-mode",
"llm",
"coding-agent"
],
"scripts": {
"typecheck": "tsc --noEmit",
"check": "tsc --noEmit",
"build": "tsc --noEmit",
"test": "node --import tsx --test tests/*.test.ts"
},
"files": [
"docs",
"extensions",
"examples",
"README.md"
],
"pi": {
"extensions": [
"./extensions/auto-mode.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.84.1",
"@earendil-works/pi-coding-agent": "^0.84.1",
"@earendil-works/pi-tui": "^0.84.1",
"@types/node": "^24.0.0",
"tsx": "^4.22.4",
"typescript": "^5.8.0"
}
}