betaflight-configurator/package.json

142 lines
4.1 KiB
JSON
Raw Normal View History

{
"name": "betaflight-configurator",
Cordova framework integration, Android support, mobile UI & options tab Cordova integration and android platform : - Added cordova directory with required config - Added cordova applications generation in gulpfile - Added cordova development instructions - Used cordova plugins to simulate missing chrome api plugins (chrome.serial and chrome.fileSystem) - Added cordova clipboard support - Added android operating system and Cordova gui mode - Fixed some css and js files to make them working on Android as well as on computers - Added --skipdep argument to accelerate cordova build (gulp task) - Added a webview helper to help people to update the webview app of their device New options tab : - Added options tab replacing the options dropdown - Added option to switch between phones UI and computers UI Mobile interface and global interface improvements : - Simplified the structure of the header with flex css - Made headerbar and tab container responsive (compact headerbar and side menu) - All tabs are adapted to mobile interface (except firmware flasher) - The servos and adjustments tabs are not fully adapted but are "usable" - Improved header bar animation - Improved log expandation animation - Added swipe gesture to toggle side menu Fixes during the development : - Logo position - Dark mode - Auto connection - Error messages (cordova_chromeapi.js) - Responsive grid - Testing - Disconnection - Width of boxes inside the OSD tab - Fixed cli tab - OSD tab - Motor stop switch - White spaces in boxes - Dialogs size - Connect button state - Prevent tablet with a height larger than 575px to switch to computers ui - Fixed logging tab - Fixed code smell - Fixed yarn cordova plugin install issue - Fixed content_wrapper - Fixed vibrations when scrolling - Fixed scrolling bar alignment - Fixed dialogReportProblem height - Fixed rates logo - Fixed auto connection default value (true) - Fixed D to D max - Fixed dialogs Added required messages in locales/en/messages.json file Requested changes
2020-07-03 14:18:55 +00:00
"productName": "Betaflight Configurator",
"description": "Crossplatform configuration tool for Betaflight flight control system.",
"version": "10.8.0",
"main": "main.html",
"chromium-args": "--disable-features=nw2",
"scripts": {
2020-10-15 15:37:30 +00:00
"start": "run-script-os",
2020-10-15 10:15:22 +00:00
"start:default": "NODE_ENV=development NW_PRE_ARGS=--load-extension='./node_modules/nw-vue-devtools-prebuilt/extension' gulp debug",
"start:windows": "set NODE_ENV=development && set NW_PRE_ARGS=--load-extension='./node_modules/nw-vue-devtools-prebuilt/extension' && gulp debug",
2018-05-29 21:53:35 +00:00
"gulp": "gulp",
2020-10-15 15:37:30 +00:00
"release": "run-script-os",
"release:default": "NODE_ENV=production gulp release",
"release:windows": "set NODE_ENV=production&& gulp release",
2020-12-27 22:09:52 +00:00
"pretest": "yarn run lint",
"test": "karma start test/karma.conf.js",
2021-12-17 17:38:53 +00:00
"lint": "eslint --ext .js,.vue src gulpfile.js gulp-appdmg.js",
"lint:fix": "eslint --fix src gulpfile.js gulp-appdmg.js"
},
"window": {
"icon": "images/bf_icon_128.png",
"id": "main-window",
"min_width": 1024,
2020-10-19 06:30:53 +00:00
"min_height": 550,
"title": "Betaflight Configurator"
},
"repository": {
"type": "git",
"url": "github.com/betaflight/betaflight-configurator"
},
2018-01-19 12:10:23 +00:00
"webview": {
"partitions": [
{
"name": "map",
"accessible_resources": [
"tabs/map.html",
"js/tabs/map.js",
"/js/libraries/openlayers/ol.css",
2019-02-27 17:32:23 +00:00
"/js/libraries/openlayers/ol.js",
2019-04-03 10:35:06 +00:00
"/images/icons/cf_icon_position.png",
"/images/icons/cf_icon_position_nofix.png"
]
2018-01-19 12:10:23 +00:00
}
]
},
"author": "The Betaflight open source project.",
"license": "GPL-3.0",
2019-08-20 11:22:52 +00:00
"engines": {
2021-12-17 17:38:53 +00:00
"node": "14.x"
2019-08-20 11:22:52 +00:00
},
2018-01-25 12:45:55 +00:00
"dependencies": {
Cordova framework integration, Android support, mobile UI & options tab Cordova integration and android platform : - Added cordova directory with required config - Added cordova applications generation in gulpfile - Added cordova development instructions - Used cordova plugins to simulate missing chrome api plugins (chrome.serial and chrome.fileSystem) - Added cordova clipboard support - Added android operating system and Cordova gui mode - Fixed some css and js files to make them working on Android as well as on computers - Added --skipdep argument to accelerate cordova build (gulp task) - Added a webview helper to help people to update the webview app of their device New options tab : - Added options tab replacing the options dropdown - Added option to switch between phones UI and computers UI Mobile interface and global interface improvements : - Simplified the structure of the header with flex css - Made headerbar and tab container responsive (compact headerbar and side menu) - All tabs are adapted to mobile interface (except firmware flasher) - The servos and adjustments tabs are not fully adapted but are "usable" - Improved header bar animation - Improved log expandation animation - Added swipe gesture to toggle side menu Fixes during the development : - Logo position - Dark mode - Auto connection - Error messages (cordova_chromeapi.js) - Responsive grid - Testing - Disconnection - Width of boxes inside the OSD tab - Fixed cli tab - OSD tab - Motor stop switch - White spaces in boxes - Dialogs size - Connect button state - Prevent tablet with a height larger than 575px to switch to computers ui - Fixed logging tab - Fixed code smell - Fixed yarn cordova plugin install issue - Fixed content_wrapper - Fixed vibrations when scrolling - Fixed scrolling bar alignment - Fixed dialogReportProblem height - Fixed rates logo - Fixed auto connection default value (true) - Fixed D to D max - Fixed dialogs Added required messages in locales/en/messages.json file Requested changes
2020-07-03 14:18:55 +00:00
"@fortawesome/fontawesome-free": "^5.13.0",
"@panter/vue-i18next": "^0.15.2",
"bluebird": "^3.7.2",
"djv": "^2.1.4",
"i18next": "^19.0.0",
"i18next-xhr-backend": "^3.2.2",
"inflection": "^1.12.0",
"jbox": "^1.0.8",
"jquery": "^3.5.1",
"jquery-textcomplete": "^1.8.5",
Cordova framework integration, Android support, mobile UI & options tab Cordova integration and android platform : - Added cordova directory with required config - Added cordova applications generation in gulpfile - Added cordova development instructions - Used cordova plugins to simulate missing chrome api plugins (chrome.serial and chrome.fileSystem) - Added cordova clipboard support - Added android operating system and Cordova gui mode - Fixed some css and js files to make them working on Android as well as on computers - Added --skipdep argument to accelerate cordova build (gulp task) - Added a webview helper to help people to update the webview app of their device New options tab : - Added options tab replacing the options dropdown - Added option to switch between phones UI and computers UI Mobile interface and global interface improvements : - Simplified the structure of the header with flex css - Made headerbar and tab container responsive (compact headerbar and side menu) - All tabs are adapted to mobile interface (except firmware flasher) - The servos and adjustments tabs are not fully adapted but are "usable" - Improved header bar animation - Improved log expandation animation - Added swipe gesture to toggle side menu Fixes during the development : - Logo position - Dark mode - Auto connection - Error messages (cordova_chromeapi.js) - Responsive grid - Testing - Disconnection - Width of boxes inside the OSD tab - Fixed cli tab - OSD tab - Motor stop switch - White spaces in boxes - Dialogs size - Connect button state - Prevent tablet with a height larger than 575px to switch to computers ui - Fixed logging tab - Fixed code smell - Fixed yarn cordova plugin install issue - Fixed content_wrapper - Fixed vibrations when scrolling - Fixed scrolling bar alignment - Fixed dialogReportProblem height - Fixed rates logo - Fixed auto connection default value (true) - Fixed D to D max - Fixed dialogs Added required messages in locales/en/messages.json file Requested changes
2020-07-03 14:18:55 +00:00
"jquery-touchswipe": "^1.6.19",
"jquery-ui-npm": "^1.12.0",
"lru_map": "^0.3.3",
"marked": "^0.8.0",
2021-11-24 01:38:48 +00:00
"multiple-select": "^1.5.2",
2020-10-15 10:15:22 +00:00
"nw-vue-devtools-prebuilt": "^0.0.10",
"object-hash": "^2.0.3",
"select2": "^4.0.13",
"semver-min": "^0.6.5",
2018-08-02 10:02:19 +00:00
"short-unique-id": "^1.1.1",
2020-10-20 12:17:50 +00:00
"switchery-latest": "^0.8.2",
"three": "~0.97.0",
"universal-ga": "^1.2.0",
"vue": "2.6.12"
2018-01-25 12:45:55 +00:00
},
"devDependencies": {
2020-06-30 13:10:22 +00:00
"@quanle94/innosetup": "^6.0.2",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
2020-10-26 19:17:30 +00:00
"browserify": "^17.0.0",
"chai": "^4.2.0",
"command-exists": "^1.2.8",
"cordova-lib": "^10.0.0",
2019-08-12 21:52:48 +00:00
"del": "^5.0.0",
"eslint": "^7.16.0",
"eslint-plugin-vue": "^7.3.0",
"follow-redirects": "^1.10.0",
2019-08-12 21:52:48 +00:00
"fs-extra": "^8.1.0",
2020-10-26 19:17:30 +00:00
"glob": "^7.1.6",
2019-05-08 13:39:21 +00:00
"gulp": "^4.0.2",
"gulp-concat": "~2.6.1",
2018-01-17 14:30:44 +00:00
"gulp-debian": "~0.1.8",
Cordova framework integration, Android support, mobile UI & options tab Cordova integration and android platform : - Added cordova directory with required config - Added cordova applications generation in gulpfile - Added cordova development instructions - Used cordova plugins to simulate missing chrome api plugins (chrome.serial and chrome.fileSystem) - Added cordova clipboard support - Added android operating system and Cordova gui mode - Fixed some css and js files to make them working on Android as well as on computers - Added --skipdep argument to accelerate cordova build (gulp task) - Added a webview helper to help people to update the webview app of their device New options tab : - Added options tab replacing the options dropdown - Added option to switch between phones UI and computers UI Mobile interface and global interface improvements : - Simplified the structure of the header with flex css - Made headerbar and tab container responsive (compact headerbar and side menu) - All tabs are adapted to mobile interface (except firmware flasher) - The servos and adjustments tabs are not fully adapted but are "usable" - Improved header bar animation - Improved log expandation animation - Added swipe gesture to toggle side menu Fixes during the development : - Logo position - Dark mode - Auto connection - Error messages (cordova_chromeapi.js) - Responsive grid - Testing - Disconnection - Width of boxes inside the OSD tab - Fixed cli tab - OSD tab - Motor stop switch - White spaces in boxes - Dialogs size - Connect button state - Prevent tablet with a height larger than 575px to switch to computers ui - Fixed logging tab - Fixed code smell - Fixed yarn cordova plugin install issue - Fixed content_wrapper - Fixed vibrations when scrolling - Fixed scrolling bar alignment - Fixed dialogReportProblem height - Fixed rates logo - Fixed auto connection default value (true) - Fixed D to D max - Fixed dialogs Added required messages in locales/en/messages.json file Requested changes
2020-07-03 14:18:55 +00:00
"gulp-json-editor": "^2.5.4",
"gulp-prompt": "^1.2.0",
"gulp-rename": "^2.0.0",
Cordova framework integration, Android support, mobile UI & options tab Cordova integration and android platform : - Added cordova directory with required config - Added cordova applications generation in gulpfile - Added cordova development instructions - Used cordova plugins to simulate missing chrome api plugins (chrome.serial and chrome.fileSystem) - Added cordova clipboard support - Added android operating system and Cordova gui mode - Fixed some css and js files to make them working on Android as well as on computers - Added --skipdep argument to accelerate cordova build (gulp task) - Added a webview helper to help people to update the webview app of their device New options tab : - Added options tab replacing the options dropdown - Added option to switch between phones UI and computers UI Mobile interface and global interface improvements : - Simplified the structure of the header with flex css - Made headerbar and tab container responsive (compact headerbar and side menu) - All tabs are adapted to mobile interface (except firmware flasher) - The servos and adjustments tabs are not fully adapted but are "usable" - Improved header bar animation - Improved log expandation animation - Added swipe gesture to toggle side menu Fixes during the development : - Logo position - Dark mode - Auto connection - Error messages (cordova_chromeapi.js) - Responsive grid - Testing - Disconnection - Width of boxes inside the OSD tab - Fixed cli tab - OSD tab - Motor stop switch - White spaces in boxes - Dialogs size - Connect button state - Prevent tablet with a height larger than 575px to switch to computers ui - Fixed logging tab - Fixed code smell - Fixed yarn cordova plugin install issue - Fixed content_wrapper - Fixed vibrations when scrolling - Fixed scrolling bar alignment - Fixed dialogReportProblem height - Fixed rates logo - Fixed auto connection default value (true) - Fixed D to D max - Fixed dialogs Added required messages in locales/en/messages.json file Requested changes
2020-07-03 14:18:55 +00:00
"gulp-replace": "^1.0.0",
2021-12-17 17:38:53 +00:00
"gulp-util": "^3.0.8",
"gulp-xml-transformer": "^5.1.1",
"gulp-yarn": "^3.0.0",
2019-08-12 21:52:48 +00:00
"gulp-zip": "^5.0.0",
"husky": "^4.3.0",
"karma": "^4.0.1",
2018-05-29 21:53:35 +00:00
"karma-chai": "^0.1.0",
2019-08-12 21:52:48 +00:00
"karma-chrome-launcher": "^3.0.0",
2018-05-29 21:53:35 +00:00
"karma-mocha": "^1.3.0",
2020-10-24 06:36:36 +00:00
"karma-rollup-preprocessor": "^7.0.5",
2018-05-29 21:53:35 +00:00
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "^0.0.32",
2019-11-06 14:58:27 +00:00
"karma-tfs-reporter": "^1.0.2",
"mocha": "^7.0.1",
"nw-builder": "^3.5.7",
"os": "^0.1.1",
"postcss": "^8.2.10",
"rollup": "^2.28.2",
"rollup-plugin-vue": "^5.*.*",
"rpm-builder": "^1.2.1",
2020-10-22 06:37:06 +00:00
"run-script-os": "^1.1.3",
"simple-git": "^2.44.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
2018-05-13 19:00:56 +00:00
"targz": "^1.0.1",
"temp": "^0.9.1",
2021-12-17 17:38:53 +00:00
"through2": "^4.0.2",
"vinyl-source-stream": "^2.0.0",
"vue-template-compiler": "^2.6.12",
2021-11-24 01:38:48 +00:00
"yarn": "^1.22.17"
},
"optionalDependencies": {
2021-12-17 17:38:53 +00:00
"appdmg": "^0.6.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}