-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.65 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
{
"name": "pi-extensions",
"private": true,
"version": "0.1.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/HaphazardDev/pi-extensions.git"
},
"homepage": "https://github.com/HaphazardDev/pi-extensions#readme",
"bugs": {
"url": "https://github.com/HaphazardDev/pi-extensions/issues"
},
"packageManager": "npm@11.12.1",
"workspaces": [
"extensions/*"
],
"scripts": {
"changeset": "changeset",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"pack:all": "npm run build && npm pack --workspaces --dry-run",
"ci": "npm run typecheck && npm run test && npm run pack:all",
"version-packages": "changeset version",
"release": "npm run build && changeset publish",
"release:status": "changeset status --verbose",
"pack:pi-vim-quit": "npm run build && npm pack --workspace extensions/pi-vim-quit",
"pack:pi-ask-user-question": "npm run build && npm pack --workspace extensions/pi-ask-user-question",
"pack:pi-copy-code-block": "npm run build && npm pack --workspace extensions/pi-copy-code-block",
"pack:pi-interactive-code-review": "npm run build && npm pack --workspace extensions/pi-interactive-code-review",
"clean": "rm -rf extensions/*/dist extensions/*/*.tsbuildinfo",
"build": "npm run clean && tsc -b extensions/*/tsconfig.build.json"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@earendil-works/pi-ai": "^0.80.10",
"@earendil-works/pi-coding-agent": "^0.80.10",
"@earendil-works/pi-tui": "^0.80.10",
"@sinclair/typebox": "^0.34.52",
"@types/node": "^24.13.3",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}