-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 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
{
"name": "pi-codebase-reader",
"version": "0.6.3",
"description": "Smart codebase reader for pi — AST-based file outlines + explorer subagent for @tintinweb/pi-subagents or nicobailon/pi-subagents",
"homepage": "https://github.com/HanzCEO/pi-codebase-reader#readme",
"bugs": {
"url": "https://github.com/HanzCEO/pi-codebase-reader/issues"
},
"author": "",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/HanzCEO/pi-codebase-reader.git"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"codebase-reader",
"subagent",
"code-exploration"
],
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.70.0",
"@earendil-works/pi-coding-agent": ">=0.70.0",
"@earendil-works/pi-tui": ">=0.70.0"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"smol-toml": "^1.7.0",
"tree-sitter-go": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"tree-sitter-smali": "^1.0.0",
"tree-sitter-solidity": "^1.2.13",
"tree-sitter-typescript": "^0.23.2",
"web-tree-sitter": "^0.26.10"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.80.3",
"@earendil-works/pi-tui": "^0.80.3",
"@types/node": "^25.5.0",
"typescript": "^6.0.0"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "npx tsx --test src/*.test.ts src/**/*.test.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"pi": {
"extensions": [
"./src/index.ts"
]
}
}