-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 972 Bytes
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
{
"name": "@allenmuu/pi-codegraph",
"version": "1.0.1",
"description": "Pi-native extension for CodeGraph structural code exploration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"test": "node --import tsx --test \"test/**/*.test.ts\"",
"lint": "tsc --noEmit",
"prepack": "npm run build"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"codegraph",
"code-exploration"
],
"author": "AllenMuu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AllenMuu/pi-codegraph.git"
},
"pi": {
"extensions": [
"./dist/index.js"
]
},
"dependencies": {
"@sinclair/typebox": "^0.34.48"
},
"devDependencies": {
"@types/node": "^22.13.9",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}