-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "codegraph",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Architecture-aware call-graph explorer: type-resolved TS/Svelte/Rust graph, ADR/layer contract checks, agent-facing query API. Onboard any project via a codegraph.config.",
"packageManager": "pnpm@10.32.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"cg": "node bin/codegraph.mjs",
"extract": "node bin/codegraph.mjs extract",
"graph:check": "node bin/codegraph.mjs check",
"graph:diff": "node bin/codegraph.mjs diff",
"graph:snapshot": "node bin/codegraph.mjs diff --save"
},
"dependencies": {
"graphology": "^0.25.4",
"graphology-communities-louvain": "^2.0.1",
"graphology-components": "^1.5.4",
"graphology-dag": "^0.4.1",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-metrics": "^2.3.1",
"mermaid": "10.9.1",
"sigma": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.6.0",
"vite": "^6.2.6"
}
}