forked from bluerobotics/cockpit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.87 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
{
"name": "cockpit",
"version": "0.0.0",
"private": true,
"main": "dist/electron/main.js",
"scripts": {
"build": "vite build",
"build:serve": "bun run build && bun run serve",
"coverage": "vitest --coverage",
"deploy:electron:dir": "electron-builder --dir",
"deploy:electron": "electron-builder --publish=never",
"deploy:flatpak": "electron-builder --x64 --linux flatpak",
"dev": "vite",
"lint": "eslint . --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",
"@mdi/font": "^7.0.96",
"@mdi/js": "^7.2.96",
"@vue-leaflet/vue-leaflet": "^0.6.1",
"@vueuse/core": "9.8.1",
"@vueuse/math": "^10.1.2",
"browser-or-node": "^2.0.0",
"colord": "^2.9.3",
"date-fns": "^2.29.3",
"file-saver": "^2.0.5",
"fix-webm-duration": "^1.0.5",
"floating-vue": "^2.0.0-beta.20",
"gamepad.js": "^1.0.4",
"gsap": "^3.11.3",
"haversine-distance": "^1.2.1",
"leaflet": "1.9.3",
"localforage": "^1.10.0",
"pinia": "^2.0.13",
"roboto-fontface": "*",
"sweetalert2": "^11.7.1",
"tailwind-scrollbar-hide": "^1.1.7",
"uuid": "^8.3.2",
"vue": "^3.3.4",
"vue-draggable-plus": "^0.2.0-beta.2",
"vue-router": "^4.0.14",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vuetify": "3.4.7",
"webfontloader": "^1.0.0",
"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/uuid": "^8.3.4",
"@types/webfontloader": "^1.0.0",
"@vitejs/plugin-vue": "3.1.0",
"@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": "^20.1.0",
"electron-builder": "^23.3.3",
"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": "~4.6.3",
"vite": "3.1.0",
"vite-plugin-electron": "^0.9.2",
"vite-plugin-pwa": "^0.14.1",
"vite-plugin-vuetify": "^1.0.0-alpha.16",
"vitest": "^0.20.3",
"vue-cli-plugin-vuetify": "~2.4.8",
"vue-tsc": "1.0.9",
"vuetify-loader": "^2.0.0-alpha.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"printWidth": 120
},
"build": {
"files": [
"dist"
],
"appId": "org.bluerobotics.cockpit",
"mac": {
"category": "public.app-category.entertainment"
},
"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"
}
}
}