-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "amcp-rebuilt",
"version": "1.0.0",
"description": "Codebase analysis tool generating a Neo4j graph",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"analyze": "npm run build && node dist/index.js analyze src --update-schema"
},
"keywords": [
"code-analysis",
"neo4j",
"typescript",
"javascript",
"ast",
"static-analysis",
"codegraph"
],
"author": "AI Assistant Roo",
"license": "MIT",
"dependencies": {
"@xenova/transformers": "^2.17.2",
"chokidar": "^3.5.3",
"chromadb-client": "^2.1.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"neo4j-driver": "^5.12.0",
"ts-morph": "^20.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}