-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 5.1 KB
/
package.json
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
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "cockpit",
"version": "0.0.0",
"private": true,
"main": "dist/electron/main.js",
"description": "An intuitive and customizable cross-platform ground control station for remote vehicles of all types.",
"scripts": {
"build": "vite build",
"build:serve": "bun run build && bun run serve",
"coverage": "vitest --coverage",
"deploy:electron:dir": "ELECTRON=true electron-builder --dir",
"deploy:electron": "ELECTRON=true electron-builder --publish=never -c.extraMetadata.version=$(git describe --tags --abbrev=0 | sed 's/^v//')",
"deploy:flatpak": "ELECTRON=true electron-builder --linux flatpak --publish=never -c.extraMetadata.version=$(git describe --tags --abbrev=0 | sed 's/^v//')",
"dev": "vite --host",
"dev:electron": "ELECTRON=true vite --host",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --max-warnings=0",
"lint:fix": "eslint --fix . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --max-warnings=0",
"preview": "vite preview --port 5050",
"serve": "vite preview",
"test:ci": "vitest --coverage --run",
"test:unit": "vitest",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@j2only/slide-unlock": "^0.5.5",
"@mdi/font": "^7.0.96",
"@mdi/js": "^7.2.96",
"@peermetrics/webrtc-stats": "^5.7.1",
"@sentry/vue": "^8.20.0",
"@turf/turf": "^7.1.0",
"@types/hammerjs": "^2.0.45",
"@vueuse/core": "9.8.1",
"@vueuse/math": "^10.1.2",
"@zip.js/zip.js": "^2.7.34",
"browser-or-node": "^2.0.0",
"colord": "^2.9.3",
"date-fns": "^2.29.3",
"file-saver": "^2.0.5",
"floating-vue": "^5.0.3",
"flowbite": "^2.2.1",
"flowbite-vue": "^0.1.2",
"fuse.js": "^7.0.0",
"gamepad.js": "^1.0.4",
"gsap": "^3.11.3",
"hammerjs": "^2.0.8",
"haversine-distance": "^1.2.1",
"ky": "^1.2.0",
"leaflet": "1.9.3",
"localforage": "^1.10.0",
"mathjs": "^13.0.3",
"pinia": "^2.0.13",
"roboto-fontface": "*",
"semver": "^7.5.4",
"slugify": "^1.6.6",
"sweetalert2": "^11.7.1",
"tailwind-scrollbar-hide": "^1.1.7",
"uuid": "^8.3.2",
"vue": "^3.4.21",
"vue-draggable-plus": "^0.2.0-beta.2",
"vue-router": "^4.0.14",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vue3-slider": "^1.9.0",
"vuetify": "3.7.0",
"webfontloader": "^1.0.0",
"webm-duration-fix": "^1.0.4",
"webrtc-adapter": "^8.2.0"
},
"devDependencies": {
"@pinia/testing": "^0.0.12",
"@rushstack/eslint-patch": "^1.1.0",
"@types/file-saver": "^2.0.5",
"@types/jsdom": "^16.2.14",
"@types/leaflet": "^1.9.0",
"@types/node": "^17.0.29",
"@types/semver": "^7.5.6",
"@types/uuid": "^8.3.4",
"@types/webfontloader": "^1.0.0",
"@vitejs/plugin-vue": "5.0.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"c8": "^7.11.3",
"electron": "^29.2.0",
"electron-builder": "^25.1.8",
"eslint": "^8.5.0",
"eslint-plugin-jsdoc": "^43.1.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^8.2.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.21",
"prettier": "^2.5.1",
"sass": "^1.38.0",
"sass-loader": "^10.0.0",
"tailwindcss": "^3.2.6",
"typescript": "~5.4.4",
"vite": "5.2.8",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-pwa": "^0.19.8",
"vite-plugin-vuetify": "^1.0.0-alpha.16",
"vitest": "^0.20.3",
"vue-cli-plugin-vuetify": "~2.4.8",
"vue-tsc": "2.0.10",
"vuetify-loader": "^2.0.0-alpha.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"printWidth": 120
},
"build": {
"files": [
"dist"
],
"appId": "org.bluerobotics.cockpit",
"productName": "Cockpit",
"publish": {
"provider": "github",
"owner": "bluerobotics"
},
"artifactName": "${productName}-${os}-${arch}-${version}.${ext}",
"mac": {
"category": "public.app-category.utilities",
"icon": "public/pwa-512x512.png"
},
"win": {
"icon": "public/pwa-512x512.png"
},
"linux": {
"icon": "public/pwa-512x512.png"
},
"flatpak": {
"base": "org.electronjs.Electron2.BaseApp",
"baseVersion": "22.08",
"description": "An intuitive and customizable cross-platform ground control station for remote vehicles of all types.",
"finishArgs": [
"--socket=wayland",
"--socket=x11",
"--share=ipc",
"--device=all",
"--socket=pulseaudio",
"--filesystem=/run/udev:ro",
"--share=network",
"--talk-name=org.freedesktop.Notifications"
],
"runtime": "org.freedesktop.Platform",
"runtimeVersion": "22.08",
"sdk": "org.freedesktop.Sdk"
}
}
}