-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.84 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
{
"name": "solar-system-models",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "A two-screen SceneryStack simulation porting the NAAP Solar System Models lab (Ptolemaic System + Planetary Configurations).",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/OpenPhysics/SolarSystemModels.git"
},
"keywords": [
"simulation",
"SceneryStack",
"interactive",
"astronomy",
"solar-system",
"NAAP",
"physics",
"education",
"pwa"
],
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"build:single": "tsc && vite build --mode single",
"preview": "vite preview",
"lint": "biome check .",
"format": "biome format --write .",
"fix": "biome check --write .",
"check": "tsc --noEmit && tsc -p tsconfig.scripts.json --noEmit",
"release": "npm run check && npm run lint && npm run build && npm version patch && git push && git push --tags",
"watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"icons": "tsx scripts/generate-icons.ts",
"decompile": "tsx scripts/decompile-flash.ts",
"rename": "tsx scripts/rename-sim.ts",
"clean": "rm -rf dist",
"prepare": "git rev-parse --is-inside-work-tree >/dev/null 2>&1 && git config core.hooksPath .githooks || true"
},
"dependencies": {
"scenerystack": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@types/node": "^26.1.1",
"happy-dom": "^20.10.6",
"jsdom": "^29.1.1",
"png-to-ico": "^3.0.2",
"sharp": "^0.35.3",
"tsx": "^4.23.0",
"typescript": "^7.0.2",
"vite": "^8.1.3",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"lodash": "^4.18.0",
"three": "^0.125.0"
}
}