-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "@zzz210s/pi-codegraph",
"version": "0.1.2",
"description": "pi coding agent local code-search extension: tree-sitter symbol index + SQLite call graph (code_find / code_trace / code_impact / code_map)",
"type": "module",
"license": "MIT",
"author": "Zzz210s",
"repository": {
"type": "git",
"url": "git+https://github.com/Zzz210s/pi-codegraph.git"
},
"bugs": {
"url": "https://github.com/Zzz210s/pi-codegraph/issues"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"extension",
"code-search",
"tree-sitter",
"call-graph",
"sqlite"
],
"files": [
"extensions",
"!extensions/codegraph/node_modules",
"setup.sh",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"pi": {
"extensions": [
"./extensions/codegraph"
]
},
"scripts": {
"test": "cd extensions/codegraph && npm test"
},
"dependencies": {
"better-sqlite3": "^13.0.3",
"tree-sitter": "^0.25.1",
"tree-sitter-go": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-python": "^0.25.0",
"tree-sitter-typescript": "^0.23.2"
}
}