-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.63 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.63 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
{
"name": "pi-extensions",
"version": "0.1.36",
"private": true,
"description": "Monorepo for @narumitw pi extension packages.",
"type": "module",
"workspaces": [
"extensions/*"
],
"scripts": {
"format": "biome format --write .",
"lint": "biome lint .",
"biome:check": "biome check .",
"check:boundaries": "node ./scripts/check-extension-boundaries.mjs",
"typecheck": "npm --workspaces run typecheck",
"check": "npm run biome:check && npm run check:boundaries && npm run typecheck",
"pack:btw": "npm --workspace @narumitw/pi-btw pack --dry-run",
"pack:caffeinate": "npm --workspace @narumitw/pi-caffeinate pack --dry-run",
"pack:chrome-devtools": "npm --workspace @narumitw/pi-chrome-devtools pack --dry-run",
"pack:codex-usage": "npm --workspace @narumitw/pi-codex-usage pack --dry-run",
"pack:firecrawl": "npm --workspace @narumitw/pi-firecrawl pack --dry-run",
"pack:goal": "npm --workspace @narumitw/pi-goal pack --dry-run",
"pack:lsp": "npm --workspace @narumitw/pi-lsp pack --dry-run",
"pack:plan-mode": "npm --workspace @narumitw/pi-plan-mode pack --dry-run",
"pack:retry": "npm --workspace @narumitw/pi-retry pack --dry-run",
"pack:statusline": "npm --workspace @narumitw/pi-statusline pack --dry-run",
"pack:sync": "npm --workspace @narumitw/pi-sync pack --dry-run",
"pack:subagents": "npm --workspace @narumitw/pi-subagents pack --dry-run"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@mariozechner/pi-coding-agent": "^0.72.1",
"@types/node": "^25.6.0",
"typebox": "^1.1.37",
"typescript": "^6.0.3"
},
"overrides": {
"node-domexception": "npm:@profoundlogic/node-domexception@1.0.2"
}
}