-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.16 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
67
68
69
70
71
72
{
"name": "@automem/graph-viewer",
"description": "Standalone graph viewer service for AutoMem",
"private": true,
"version": "0.3.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/verygoodplugins/automem-graph-viewer.git"
},
"homepage": "https://github.com/verygoodplugins/automem-graph-viewer",
"bugs": {
"url": "https://github.com/verygoodplugins/automem-graph-viewer/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "npx vite",
"dev:all": "node ./scripts/dev-all.mjs",
"typecheck": "tsc -b",
"build": "npm run typecheck && npx vite build",
"preview": "npx vite preview",
"lint": "eslint .",
"seed": "node scripts/seed.mjs",
"seed:reset": "node scripts/seed.mjs --reset",
"start": "node server.mjs"
},
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1675466862",
"@mediapipe/drawing_utils": "^0.3.1675466124",
"@mediapipe/hands": "^0.4.1675469240",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@react-three/drei": "^9.117.3",
"@react-three/fiber": "^8.17.10",
"@react-three/postprocessing": "^2.16.3",
"@tanstack/react-query": "^5.62.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-force-3d": "^3.0.5",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.7",
"tailwind-merge": "^2.5.5",
"three": "^0.170.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.170.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.3"
}
}