-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "codegraphplus",
"version": "0.1.0",
"description": "Local API and data knowledge graph for Java backends — MCP server for Cursor and OpenCode",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./plugin-api": {
"types": "./dist/indexer/plugin-api.d.ts",
"default": "./dist/indexer/plugin-api.js"
}
},
"bin": {
"codegraphplus": "./dist/bin/codegraphplus.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"require('fs').mkdirSync('dist/db',{recursive:true});require('fs').copyFileSync('src/db/schema.sql','dist/db/schema.sql');require('fs').chmodSync('dist/bin/codegraphplus.js',0o755)\"",
"dev": "tsc --watch",
"cli": "npm run build && node dist/bin/codegraphplus.js",
"test": "vitest run",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"api",
"openapi",
"swagger",
"mcp",
"knowledge-graph",
"cursor",
"opencode",
"java",
"spring-boot"
],
"license": "MIT",
"engines": {
"node": ">=22.5.0"
},
"dependencies": {
"commander": "^14.0.2"
},
"devDependencies": {
"@types/node": "^20.19.30",
"typescript": "^5.0.0",
"vitest": "^2.1.9"
}
}