-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.55 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": "spatial-storytelling-engine",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "A local-first web engine for telling stories inside a 3D scan. One Markdown story.md drives two switchable presentation modes — no reload, no backend.",
"license": "MIT",
"author": "Into Storymode",
"repository": {
"type": "git",
"url": "https://github.com/IntoStorymode/Spatial-Storytelling-Engine"
},
"engines": {
"node": ">=20"
},
"scripts": {
"gen:assets": "node scripts/gen-assets.mjs",
"gen:notices": "node scripts/gen-notices.mjs",
"predev": "node scripts/gen-assets.mjs && node scripts/gen-notices.mjs",
"prebuild": "node scripts/gen-assets.mjs && node scripts/gen-notices.mjs",
"dev": "vite",
"build": "tsc --noEmit && vite build",
"publish:site": "node scripts/publish-site.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@mkkellogg/gaussian-splats-3d": "^0.4.7",
"@sparkjsdev/spark": "^2.1.0",
"camera-controls": "^2.9.0",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.4",
"three": "^0.180.0",
"zustand": "^4.5.7"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.180.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}