-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1 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
{
"name": "@devkade/pi-plan",
"version": "0.2.2",
"description": "Plan command extension for Pi: read-only planning mode with approval-based execution",
"repository": {
"type": "git",
"url": "git+https://github.com/devkade/pi-plan.git"
},
"homepage": "https://github.com/devkade/pi-plan#readme",
"bugs": {
"url": "https://github.com/devkade/pi-plan/issues"
},
"type": "module",
"license": "MIT",
"keywords": [
"pi-package",
"pi-extension",
"plan-mode",
"yolo"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src",
"plan.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo 'no tests yet'",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run test"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.53.0",
"bun-types": "^1.3.9",
"typescript": "^5.9.3"
}
}