-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 976 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
{
"name": "planet-viewer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"assets": "bash scripts/fetch-textures.sh && bash scripts/fetch-nasa.sh && bash scripts/fetch-gray.sh && node scripts/build-textures.mjs 8k && node scripts/make-storm-atlas.mjs && bash scripts/fetch-space.sh && node scripts/build-space.mjs && bash scripts/fetch-sun.sh && node scripts/build-sun.mjs && bash scripts/fetch-ice-giants.sh && node scripts/make-uranus-rings.mjs",
"assets:16k": "node scripts/build-textures.mjs 16k",
"assets:moons": "bash scripts/fetch-moons.sh",
"assets:relief": "node scripts/make-normal.mjs"
},
"devDependencies": {
"@tweakpane/core": "^2.0.5",
"@types/three": "^0.185.4",
"sharp": "^0.35.4",
"typescript": "~6.0.2",
"vite": "^8.2.2"
},
"dependencies": {
"three": "^0.185.1",
"tweakpane": "^4.0.5"
}
}