-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "pi-gitnexus",
"version": "0.5.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": "*",
"@mariozechner/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@mariozechner/pi-ai": "latest",
"@mariozechner/pi-coding-agent": "latest",
"@sinclair/typebox": "latest",
"@types/node": "^25.3.0",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills"
],
"image": "https://github.com/tintinweb/pi-gitnexus/raw/master/media/screenshot.png"
}
}