-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "codegraph",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"postinstall": "node scripts/sync-wasm.mjs",
"dev": "next dev",
"build": "node scripts/sync-wasm.mjs && next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:trace": "vitest run tests/smoke.trace.test.ts --reporter=verbose",
"check": "npm run typecheck && npm run lint && npm test"
},
"dependencies": {
"@dagrejs/dagre": "^3.0.0",
"@vscode/tree-sitter-wasm": "^0.3.1",
"@xyflow/react": "^12.11.2",
"clsx": "^2.1.1",
"fflate": "^0.8.3",
"lucide-react": "^1.27.0",
"next": "^16.2.12",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"web-tree-sitter": "^0.26.11",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"postcss": "^8.5.25",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"description": "AI code intelligence platform — trace what actually happens in any repository."
}