-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 7.02 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 7.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "orrery",
"version": "0.7.3",
"description": "Browser-based solar system explorer + Mars / lunar mission simulator. Real Keplerian orbital mechanics, real missions from Luna 9 to Artemis II, fully static SPA.",
"homepage": "https://chipi.github.io/orrery/",
"repository": {
"type": "git",
"url": "git+https://github.com/chipi/orrery.git"
},
"bugs": {
"url": "https://github.com/chipi/orrery/issues"
},
"author": "Marko Dragoljević",
"keywords": [
"orrery",
"solar-system",
"orbital-mechanics",
"mars",
"moon",
"spaceflight",
"education",
"kepler",
"lambert",
"porkchop",
"sveltekit",
"threejs"
],
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "npm run i18n:compile && exec vite dev",
"build": "npm run i18n:compile && npm run validate-data && npm run build-science-index && npm run precompute-porkchops && npm run build-i18n-bundles && vite build && node scripts/check-precache-budget.mjs && node scripts/prune-build-staging.mjs && node scripts/check-prerender-completeness.mjs && node scripts/check-internal-links.mjs",
"preview": "vite preview",
"check": "npm run i18n:compile && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "npm run i18n:compile && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --check --cache .",
"lint:eslint": "eslint --cache --cache-location node_modules/.cache/eslint-cache .",
"format": "prettier --write .",
"typecheck": "npm run i18n:compile && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"typecheck:scripts": "npm run i18n:compile && svelte-kit sync && tsc -p tsconfig.scripts.json",
"test": "npm run i18n:compile && vitest run --passWithNoTests",
"test:coverage": "npm run i18n:compile && vitest run --coverage --passWithNoTests",
"test:e2e": "npm run build && playwright test",
"test:e2e:ui": "npm run build && playwright test --ui",
"regen-visual-baselines-linux": "bash scripts/regenerate-visual-baselines-linux.sh",
"release:rehearsal": "tsx scripts/release-rehearsal.ts",
"screenshots": "npm run build && tsx scripts/capture-screenshots.ts",
"i18n:compile": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide",
"fetch-assets": "tsx scripts/fetch-assets.ts",
"fetch": "npm run fetch-assets && npm run build-image-provenance && npm run build-link-provenance && npm run check-learn-links -- --update && npm run validate-data",
"build-image-provenance": "tsx scripts/build-image-provenance.ts",
"build-link-provenance": "tsx scripts/build-link-provenance.ts",
"check-learn-links": "tsx scripts/check-learn-links.ts",
"precompute-porkchops": "tsx scripts/precompute-porkchops.ts",
"build-tech-bom": "tsx scripts/build-tech-bom.ts",
"check-tech-bom": "tsx scripts/build-tech-bom.ts --check",
"check-no-secrets": "tsx scripts/check-no-secrets.ts",
"check-no-secrets:all": "tsx scripts/check-no-secrets.ts --all",
"images:score": "tsx scripts/score-images.ts",
"images:hotspots": "tsx scripts/fetch-hotspot-imagery.ts",
"fetch:launches": "tsx scripts/fetch-launches.ts",
"audit:images": "tsx scripts/audit-image-usage.ts",
"audit:launches": "tsx scripts/audit-report-launches.ts",
"audit:fly-cameras": "tsx scripts/audit-fly-cameras.ts",
"audio:translate": "tsx scripts/audio/translate.ts",
"audio:generate": "tsx scripts/audio/generate.ts",
"audio:build": "tsx scripts/audio/build.ts",
"audio:check-cost": "tsx scripts/audio/check-cost-thresholds.ts",
"validate-data": "tsx scripts/validate-data-runner.ts",
"validate-diagrams": "tsx scripts/validate-diagrams.ts",
"build-science-index": "tsx scripts/build-science-index.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs && cp -R docs/prototypes docs/.vitepress/dist/prototypes",
"docs:preview": "vitepress preview docs",
"preflight": "node scripts/with-lock.mjs preflight -- node scripts/preflight-smart.mjs",
"ci": "npm run preflight",
"prepare": "git config core.hooksPath .husky 2>/dev/null || true",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d web",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f web",
"docker:reset-data": "docker volume rm orrery-data orrery-cache 2>/dev/null || true",
"docker:fetch-launches": "docker compose run --rm pipeline-runner scripts/fetch-launches.ts",
"docker:images:hotspots": "docker compose run --rm pipeline-runner scripts/fetch-hotspot-imagery.ts",
"docker:fetch-assets": "docker compose run --rm pipeline-runner scripts/fetch-assets.ts",
"docker:validate-data": "docker compose run --rm pipeline-runner scripts/validate-data.ts",
"docker:build-image-provenance": "docker compose run --rm pipeline-runner scripts/build-image-provenance.ts",
"docker:build-link-provenance": "docker compose run --rm pipeline-runner scripts/build-link-provenance.ts",
"docker:audit-launches": "docker compose run --rm pipeline-runner scripts/audit-report-launches.ts",
"test:e2e:smoke": "npm run build && playwright test --workers=1 --project=desktop-chromium tests/e2e/landing.spec.ts tests/e2e/smoke.spec.ts",
"preflight:full:body": "npm run typecheck && npm run typecheck:scripts && npm run lint && npm run test && npm run validate-data && npm run audio:check-cost && npm run check-no-secrets:all && npm run build",
"preflight:full": "node scripts/with-lock.mjs preflight -- npm run preflight:full:body",
"build-i18n-bundles": "node scripts/build-i18n-bundles.mjs"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.96.0",
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "9.17.0",
"@google-cloud/text-to-speech": "^6.4.1",
"@inlang/paraglide-js": "^2.19.0",
"@playwright/test": "1.60.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "2.61.1",
"@sveltejs/vite-plugin-svelte": "4.0.4",
"@types/katex": "^0.16.8",
"@types/node": "^26.1.0",
"@types/three": "0.128.0",
"@vite-pwa/sveltekit": "^1.1.0",
"@vitest/coverage-v8": "^4.1.6",
"ajv": "^8.20.0",
"ajv-formats": "3.0.1",
"canvas": "^3.2.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^2.46.1",
"gdal-async": "^3.12.3",
"globals": "17.6.0",
"jsdom": "26.0.0",
"prettier": "^3.9.4",
"prettier-plugin-svelte": "^3.5.2",
"sharp": "^0.34.5",
"svelte": "^5.55.6",
"svelte-check": "^4.4.8",
"tslib": "2.8.1",
"tsx": "4.22.3",
"typescript": "5.7.2",
"typescript-eslint": "^8.59.3",
"vite": "5.4.21",
"vite-plugin-compression2": "^2.5.3",
"vitepress": "1.6.4",
"vitepress-sidebar": "1.25.2",
"vitest": "^4.1.6"
},
"dependencies": {
"@sentry/sveltekit": "^10.53.1",
"detect-gpu": "^5.0.70",
"katex": "^0.16.45",
"three": "0.128.0"
}
}