-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@vndv/pi-codegraph",
"version": "0.1.10",
"description": "CodeGraph tools for Pi Agent.",
"license": "MIT",
"type": "module",
"author": "CodeGraph contributors",
"homepage": "https://github.com/vndv/pi-codegraph#readme",
"repository": {
"type": "git",
"url": "https://github.com/vndv/pi-codegraph"
},
"bugs": {
"url": "https://github.com/vndv/pi-codegraph/issues"
},
"keywords": [
"pi-package",
"pi",
"codegraph",
"coding-agent",
"code-intelligence"
],
"files": [
"extensions",
"README.md",
"LICENSE"
],
"exports": {
"./extensions/codegraph": "./extensions/codegraph.ts",
"./extensions/codegraph.ts": "./extensions/codegraph.ts"
},
"pi": {
"extensions": [
"./extensions"
]
},
"scripts": {
"check:readme-version": "node scripts/sync-readme-version.mjs --check",
"ci": "npm run typecheck && npm test && npm run compat:codegraph && npm run check:readme-version && npm pack --dry-run",
"compat:codegraph": "codegraph --version",
"local-release": "changeset version && changeset publish",
"publish-packages": "node -e \"const {execSync}=require('node:child_process'); const p=require('./package.json'); const spec=p.name+'@'+p.version; try { execSync('npm view '+spec+' version', {stdio:'ignore'}); console.log(spec+' already published; skipping.'); } catch { execSync('npm publish --access public --provenance --ignore-scripts', {stdio:'inherit'}); }\"",
"prepack": "npm run typecheck && npm test",
"prepublishOnly": "npm run ci",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"sync:readme-version": "node scripts/sync-readme-version.mjs",
"version-packages": "changeset version && npm run sync:readme-version && npm install --package-lock-only --ignore-scripts"
},
"engines": {
"node": ">=22.19.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@colbymchenry/codegraph": "^1.0.1",
"@earendil-works/pi-coding-agent": "^0.83.0",
"@types/node": "^26.0.0",
"typescript": "^7.0.2",
"vitest": "^4.1.7"
}
}