-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.26 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
{
"name": "satvis",
"version": "1.0.0",
"private": true,
"description": "Satellite orbit visualization with CesiumJS",
"license": "MIT",
"author": "Florian Mauracher",
"type": "module",
"scripts": {
"dev": "vite",
"dev:host": "vite --host 0.0.0.0",
"dev:worker": "pnpm --filter satvis-worker dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "vue-tsc --noEmit",
"lint": "pnpm lint:web && pnpm lint:worker",
"lint:web": "oxlint --disable-nested-config && oxfmt --disable-nested-config --check && vue-tsc",
"lint:worker": "pnpm --filter satvis-worker lint",
"lint:fix": "pnpm lint:fix:web && pnpm lint:fix:worker",
"lint:fix:web": "oxlint --disable-nested-config --fix && oxfmt --disable-nested-config --write",
"lint:fix:worker": "pnpm --filter satvis-worker lint:fix",
"update-gp": "pnpm --filter satvis-worker generate-groups && node worker/scripts/update-static-gp.mjs",
"update-imagery": "bash scripts/generate.sh imagery",
"update-starmap": "bash scripts/generate.sh starmap",
"update-custom-data": "bash data/custom/update-custom-data.sh",
"deploy": "pnpm build && pnpm --filter satvis-worker deploy",
"deploy:preview": "pnpm build && pnpm --filter satvis-worker deploy:preview"
},
"dependencies": {
"@cesium/engine": "^26.2.0",
"@cesium/widgets": "^16.1.1",
"@nuxt/ui": "^4.10.0",
"@tanstack/vue-virtual": "^3.13.35",
"cesium": "^1.144.0",
"cesium-sensor-volumes": "github:Flowm/cesium-sensor-volumes#1.140.0",
"dayjs": "^1.11.23",
"pinia": "^4.0.3",
"posthog-js": "^1.417.4",
"satellite.js": "^7.1.0",
"vue": "^3.5.41",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@iconify-json/fa6-brands": "^1.2.6",
"@iconify-json/lucide": "^1.2.123",
"@types/node": "^26.2.0",
"@vite-pwa/assets-generator": "^1.0.2",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/tsconfig": "^0.9.1",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"tailwindcss": "^4.3.3",
"typescript": "catalog:",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.10"
},
"packageManager": "pnpm@11.9.0"
}