-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 942 Bytes
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
{
"name": "cave-survey-viewer",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Web-native 3D viewer for cave survey data. Parses survey files entirely client-side.",
"license": "AGPL-3.0-or-later",
"author": "Matt Notarangelo",
"repository": {
"type": "git",
"url": "git+https://github.com/MattNotarangelo/CaveViewer.git"
},
"homepage": "https://github.com/MattNotarangelo/CaveViewer#readme",
"bugs": {
"url": "https://github.com/MattNotarangelo/CaveViewer/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"three": "^0.170.0"
},
"devDependencies": {
"@types/node": "^20.19.42",
"@types/three": "^0.170.0",
"typescript": "^5.6.3",
"vite": "^6.4.3",
"vitest": "^3.2.6"
}
}