-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.78 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
{
"name": "@nodedb-lab/pi-code2graph",
"version": "0.1.0",
"description": "Deterministic structural code-graph tools for Pi Coding Agent.",
"license": "Apache-2.0",
"author": "NodeDB Lab",
"repository": {
"type": "git",
"url": "git+https://github.com/nodedb-lab/code2graph.git",
"directory": "bindings/pi"
},
"homepage": "https://github.com/nodedb-lab/code2graph/tree/main/bindings/pi#readme",
"bugs": {
"url": "https://github.com/nodedb-lab/code2graph/issues"
},
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"code2graph",
"code-graph",
"static-analysis",
"tree-sitter"
],
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@11.14.1",
"files": [
"extensions",
"media/code2graph-preview.webp",
"media/code2graph-preview.zen",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./extensions/code2graph/index.ts"
],
"image": "./media/code2graph-preview.webp"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "tsx --test test/**/*.test.ts && node --test test/stage-release.test.mjs",
"test:smoke": "node test/pi-package-smoke.test.mjs",
"test:pack": "node test/pack.test.mjs",
"test:all": "npm run typecheck && npm test && npm run test:pack && npm run test:smoke",
"pack:check": "npm pack --dry-run --json"
},
"dependencies": {
"@nodedb-lab/code2graph": "0.0.0-beta.7",
"ignore": "^7.0.5"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@types/node": "^22.20.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}