-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.2 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": "pi-advisor",
"version": "0.3.0",
"description": "Pi extension package that adds a Claude-style advisor tool for strategic guidance during complex agent tasks.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RimuruW/pi-advisor.git"
},
"homepage": "https://github.com/RimuruW/pi-advisor",
"bugs": {
"url": "https://github.com/RimuruW/pi-advisor/issues"
},
"keywords": [
"pi-package",
"pi-extension",
"advisor",
"coding-agent"
],
"license": "MIT",
"files": [
"index.ts",
"src/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "node --test tests/*.test.mjs",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm test"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.79.1",
"@earendil-works/pi-coding-agent": "^0.79.1",
"@earendil-works/pi-tui": "^0.79.1",
"@types/node": "^25.9.3",
"typebox": "^1.2.8",
"typescript": "^6.0.3"
}
}