-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 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
{
"name": "@ygncode/pi-bro",
"version": "0.1.0",
"description": "A Pi side-channel command that re-explains conversation context in plain language.",
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"explain",
"simplify"
],
"license": "MIT",
"author": "ygncode",
"repository": {
"type": "git",
"url": "git+https://github.com/ygncode/pi-bro.git"
},
"homepage": "https://github.com/ygncode/pi-bro#readme",
"bugs": {
"url": "https://github.com/ygncode/pi-bro/issues"
},
"files": [
"index.ts",
"README.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"check": "npm run typecheck"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "0.84.3",
"@earendil-works/pi-coding-agent": "0.84.3",
"@earendil-works/pi-tui": "0.84.3",
"@types/node": "^24.0.0",
"typescript": "^5.9.0"
}
}