-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "pi-agent-extensions",
"version": "0.4.3",
"description": "Collection of extensions for pi coding agent",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jayshah5696/pi-agent-extensions.git"
},
"homepage": "https://github.com/jayshah5696/pi-agent-extensions",
"bugs": {
"url": "https://github.com/jayshah5696/pi-agent-extensions/issues"
},
"files": [
"extensions",
"themes",
"docs"
],
"keywords": [
"pi-package",
"pi",
"coding-agent",
"extensions"
],
"license": "MIT",
"author": {
"name": "Jayesh Shah",
"url": "https://github.com/jayshah5696"
},
"engines": {
"node": ">=18.0.0"
},
"pi": {
"extensions": [
"./extensions/sessions/index.ts",
"./extensions/ask-user/index.ts",
"./extensions/handoff/index.ts",
"./extensions/notify/index.ts",
"./extensions/context/index.ts",
"./extensions/files/index.ts",
"./extensions/review/index.ts",
"./extensions/loop/index.ts",
"./extensions/answer/index.ts",
"./extensions/control/index.ts",
"./extensions/cwd-history/index.ts",
"./extensions/session-breakdown/index.ts",
"./extensions/todos/index.ts",
"./extensions/whimsical/index.ts",
"./extensions/nvidia-nim/index.ts",
"./extensions/btw/index.ts",
"./extensions/powerline-footer/index.ts"
],
"themes": [
"./themes/nightowl.json",
"./themes/p10k-inspired.json",
"./themes/ghostty-dark.json",
"./themes/fzf-bat.json"
]
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.48",
"tsx": "^4.21.0"
},
"scripts": {
"test": "node --import tsx --test 'tests/**/*.test.ts' 'tests/*.test.ts'"
}
}