-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.87 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.87 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
{
"name": "betaflight-app",
"productName": "Betaflight",
"displayName": "Betaflight - Configuration and management application",
"description": "Crossplatform configuration and management application for the Betaflight flight control firmware.",
"version": "2026.6.0-alpha",
"type": "module",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"review": "vite build && vite preview",
"pretest": "npm run lint",
"test": "vitest",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"android:dev": "node capacitor.config.generator.mjs --dev && npx cap run android",
"android:open": "vite build && node capacitor.config.generator.mjs && npx cap open android",
"android:run": "vite build && node capacitor.config.generator.mjs && npx cap run android",
"android:sync": "vite build && node capacitor.config.generator.mjs && npx cap sync android",
"android:release": "vite build && node capacitor.config.generator.mjs && npx cap build android --release",
"tauri:dev": "node scripts/check-tauri-prereqs.mjs && cross-env TAURI_DEV=1 tauri dev",
"tauri:build": "node scripts/check-tauri-prereqs.mjs && tauri build",
"tauri:prebuild": "node scripts/sync-tauri-version.mjs && vite build",
"format": "prettier --write {src,test}/**/*.{js,vue,css,less}",
"storybook": "storybook dev -p 6006",
"prepare": "husky"
},
"window": {
"icon": "images/bf_icon_128.png",
"id": "main-window",
"min_width": 1024,
"min_height": 550,
"title": "Betaflight App"
},
"repository": {
"type": "git",
"url": "github.com/betaflight/betaflight-configurator"
},
"author": "The Betaflight open source project.",
"license": "GPL-3.0",
"engines": {
"node": "24.x"
},
"dependencies": {
"@capacitor/android": "8.0.2",
"@capacitor/core": "8.0.2",
"@fortawesome/fontawesome-free": "^6.5.2",
"@iconify-json/lucide": "^1.2.101",
"@nuxt/ui": "^4.4.0",
"@simplewebauthn/browser": "^13.2.2",
"@tauri-apps/api": "~2.10.0",
"@vitejs/plugin-vue": "^6.0.1",
"crypto-es": "^2.1.0",
"d3": "^7.9.0",
"djv": "^2.1.4",
"dompurify": "^3.4.0",
"geomagnetism": "^0.2.0",
"i18next": "^24.2.2",
"i18next-http-backend": "^3.0.5",
"i18next-vue": "^5.2.0",
"inflection": "^1.13.4",
"jsdom": "^26.0.0",
"lodash.debounce": "^4.0.8",
"marked": "^15.0.7",
"multicast-dns": "^7.2.5",
"ol": "^10.4.0",
"pinia": "^3.0.4",
"short-unique-id": "^5.2.0",
"suncalc": "^1.9.0",
"tailwindcss": "^4.1.18",
"three": "^0.176.0",
"tiny-emitter": "^2.1.0",
"vite-plugin-pwa": "^1.0.3",
"vue": "^3.5.13",
"vue-multiselect": "^3.0.0",
"vue-router": "^4"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@capacitor/cli": "^8.0.2",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-links": "^8.6.3",
"@storybook/vue3": "^8.6.3",
"@tauri-apps/cli": "~2.10.0",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.32.0",
"follow-redirects": "^1.16.0",
"glob": "^11.0.1",
"husky": "^9.1.7",
"inquirer": "^12.4.2",
"less": "^4.2.2",
"lint-staged": "^15.4.3",
"os": "^0.1.2",
"postcss": "^8.5.12",
"prettier": "^3.5.2",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"run-script-os": "^1.1.6",
"vite": "^7.3.2",
"vite-plugin-mkcert": "^1.17.9",
"vitest": "^3.2.4"
}
}