forked from prompted365/codegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.87 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
{
"name": "amcp-rebuilt",
"version": "1.0.0",
"description": "Codebase analysis tool generating a Neo4j graph",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run src/__tests__/integration",
"test:unit": "vitest run src/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"analyze": "npm run build && node dist/index.js analyze --update-schema"
},
"keywords": [
"code-analysis",
"neo4j",
"typescript",
"javascript",
"ast",
"static-analysis",
"codegraph"
],
"author": "AI Assistant Roo",
"license": "MIT",
"dependencies": {
"@alanse/mcp-neo4j-server": "^0.1.1",
"@modelcontextprotocol/sdk": "^1.8.0",
"@xenova/transformers": "^2.17.2",
"chokidar": "^3.5.3",
"chromadb-client": "^2.1.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"ignore": "^7.0.3",
"neo4j-driver": "^5.12.0",
"neo4j-driver-bolt-connection": "^5.28.1",
"tree-sitter": "^0.22.4",
"tree-sitter-c": "^0.23.5",
"tree-sitter-c-sharp": "^0.23.1",
"tree-sitter-cpp": "^0.23.4",
"tree-sitter-go": "^0.23.4",
"tree-sitter-java": "^0.23.5",
"tree-sitter-sql": "^0.1.0",
"ts-morph": "^20.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@testcontainers/neo4j": "^10.23.0",
"@types/commander": "^2.12.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.17.28",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"testcontainers": "^10.23.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vitest": "^3.1.1"
}
}