-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.57 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
{
"name": "pi-gitnexus",
"version": "0.6.1",
"description": "GitNexus knowledge graph integration for pi — enriches searches with call chains, execution flows, and blast radius",
"author": "tintinweb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tintinweb/pi-gitnexus.git"
},
"homepage": "https://github.com/tintinweb/pi-gitnexus#readme",
"bugs": {
"url": "https://github.com/tintinweb/pi-gitnexus/issues"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"gitnexus",
"knowledge-graph",
"code-intelligence",
"call-graph",
"agent"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run lint && npm run typecheck && npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "npm run typecheck && npm run test",
"lint": "biome check src/",
"lint:fix": "biome check --fix src/"
},
"peerDependencies": {
"@mariozechner/pi-ai": ">=0.70",
"@mariozechner/pi-coding-agent": ">=0.70",
"typebox": ">=1.0"
},
"dependencies": {
"cross-spawn": "7.0.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@mariozechner/pi-ai": "^0.72.1",
"@mariozechner/pi-coding-agent": "^0.72.1",
"@types/cross-spawn": "6.0.6",
"@types/node": "^25.6.0",
"typebox": "^1.1.37",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills"
],
"image": "https://github.com/tintinweb/pi-gitnexus/raw/master/media/screenshot.png"
}
}