-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.76 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.76 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
{
"name": "altnautica-command",
"version": "0.57.3",
"private": false,
"license": "GPL-3.0-only",
"description": "Altnautica Command — Open-source Ground Control Station for autonomous drones",
"main": "dist-electron/main.js",
"scripts": {
"copy:cesium": "rm -rf public/cesium && cp -R node_modules/cesium/Build/Cesium public/cesium",
"predev": "npm run copy:cesium",
"prebuild": "npm run copy:cesium",
"predemo": "npm run copy:cesium",
"dev": "next dev --turbo --port 4000",
"build": "next build --webpack",
"postbuild": "node scripts/copy-standalone-assets.mjs",
"start": "next start --port 4000",
"demo": "NEXT_PUBLIC_DEMO_MODE=true next dev --turbo --port 4000",
"lint": "eslint",
"typecheck": "npm run typecheck:app && npm run typecheck:convex && npm run typecheck:electron && npm run typecheck:tools",
"typecheck:app": "tsc --noEmit -p tsconfig.json",
"typecheck:convex": "tsc --noEmit -p convex/tsconfig.json",
"typecheck:electron": "tsc --noEmit -p electron/tsconfig.json",
"typecheck:tools": "tsc --noEmit -p tools/mavlink-bridge/tsconfig.json && tsc --noEmit -p tools/mqtt-bridge/tsconfig.json && tsc --noEmit -p tools/video-relay/tsconfig.json && tsc --noEmit -p tools/sitl/tsconfig.json",
"audit:security": "npm audit --audit-level=high",
"electron:compile": "tsc -p electron/tsconfig.json",
"desktop:dev": "npm run electron:compile && electron . --dev",
"desktop:demo": "npm run electron:compile && electron . --dev --demo",
"desktop:preview": "npm run build && npm run electron:compile && electron .",
"desktop:build": "npm run build && npm run electron:compile && electron-builder",
"desktop:build:mac": "npm run build && npm run electron:compile && electron-builder --mac",
"desktop:build:win": "npm run build && npm run electron:compile && electron-builder --win",
"desktop:build:linux": "npm run build && npm run electron:compile && electron-builder --linux",
"test": "vitest run",
"test:node": "find src -name '*.node-test.ts' -print0 | xargs -0 --no-run-if-empty tsx --test",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:bench": "vitest bench",
"test:all": "vitest run",
"convex:dev": "npx convex dev",
"convex:deploy": "npx convex deploy",
"deploy": "cargo run --release --quiet --manifest-path tools/deploy/Cargo.toml --",
"postinstall": "patch-package"
},
"dependencies": {
"@convex-dev/auth": "^0.0.90",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@mkkellogg/gaussian-splats-3d": "^0.4.7",
"@react-pdf/renderer": "^4.4.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@rerun-io/web-viewer": "^0.33.1",
"@tanstack/react-virtual": "^3.13.22",
"@types/shpjs": "^3.4.7",
"@xyflow/react": "^12.10.2",
"ajv": "^8.20.0",
"bonjour-service": "^1.3.0",
"cesium": "^1.141.0",
"convex": "^1.32.0",
"electron-updater": "^6.0.0",
"exifr": "^7.1.3",
"flexsearch": "^0.8.212",
"geotiff": "^3.0.5",
"idb-keyval": "^6.2.2",
"jszip": "^3.10.1",
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"lucide-react": "^0.570.0",
"marked": "^15.0.0",
"mqtt": "^5.15.0",
"next": "^16.2.4",
"next-intl": "^4.11.0",
"pako": "^2.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-leaflet": "^5.0.0",
"recharts": "^2.15.3",
"sanitize-html": "^2.17.3",
"shpjs": "^6.2.0",
"suncalc": "^1.9.0",
"three": "^0.183.2",
"uplot": "^1.6.32",
"xz-decompress": "^0.2.3",
"yaml": "^2.9.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/leaflet": "^1.9.17",
"@types/node": "^20",
"@types/pako": "^2.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"@types/suncalc": "^1.9.2",
"@types/three": "^0.183.1",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"commander": "^13.1.0",
"electron": "^41.5.0",
"electron-builder": "^26.0.0",
"eslint": "^9",
"eslint-config-next": "^16.2.4",
"happy-dom": "^20.8.3",
"msw": "^2.12.10",
"patch-package": "^8.0.1",
"tailwindcss": "^4",
"tsx": "^4.19.0",
"typescript": "^5",
"vitest": "^4.1.5",
"vitest-websocket-mock": "^0.5.0"
},
"overrides": {
"@xmldom/xmldom": "^0.8.10",
"dompurify": "^3.4.2",
"esbuild": "^0.28.1",
"js-yaml": "^4.2.0",
"lodash": "^4.18.1",
"postcss": "^8.5.13",
"ws": "^8.21.0"
}
}