-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@vessup/pi-kit",
"version": "0.1.2",
"description": "Reusable Pi coding agent extensions",
"type": "module",
"packageManager": "bun@1.3.10",
"repository": {
"type": "git",
"url": "git+https://github.com/Vessup/pi-kit.git"
},
"homepage": "https://github.com/Vessup/pi-kit#readme",
"bugs": {
"url": "https://github.com/Vessup/pi-kit/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"files": [
"extensions/",
"prompts/",
"web/",
"terminal-output.ts"
],
"keywords": [
"pi-package",
"pi-extension"
],
"scripts": {
"build": "bun run webBuild",
"check": "tsc --noEmit && tsc -p web/server/tsconfig.json --noEmit && tsc -p web/client/tsconfig.json --noEmit",
"prepack": "bun run webBuild",
"test": "bun test",
"webBuild": "vite build --config web/vite.config.ts",
"webDev": "vite --config web/vite.config.ts",
"webServer": "bun run web/server/index.ts",
"format": "biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"lint": "biome lint ."
},
"pi": {
"extensions": [
"./extensions/model-order.ts",
"./extensions/session-footer.ts",
"./extensions/pr-footer.ts",
"./extensions/terminal-output.ts",
"./extensions/subagents.ts",
"./extensions/worktree.ts",
"./extensions/web-sessions.ts",
"./extensions/delete-session.ts",
"./extensions/auto-router.ts"
],
"prompts": [
"./prompts/address-pr.md"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@earendil-works/pi-ai": "0.84.1",
"@earendil-works/pi-coding-agent": "0.84.1",
"@earendil-works/pi-tui": "0.84.1",
"@radix-ui/react-tooltip": "1.2.8",
"@tailwindcss/vite": "4.1.18",
"@types/bun": "1.3.10",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"diff": "8.0.3",
"highlight.js": "11.11.1",
"lucide-react": "0.563.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "10.1.0",
"remark-gfm": "4.0.1",
"tailwind-merge": "3.4.0",
"tailwindcss": "4.1.18",
"typebox": "1.3.7",
"typescript": "5.9.3",
"vite": "7.3.6"
},
"license": "Apache-2.0",
"dependencies": {
"proper-lockfile": "4.1.2"
}
}