cordova-11/package.json

77 lines
2.2 KiB
JSON
Raw Normal View History

2022-05-24 14:49:24 +08:00
{
"name": "com.example.tao",
"displayName": "",
"version": "1.0.0",
"description": "Auto Package",
"main": "index.js",
"scripts": {
2022-05-26 09:46:31 +08:00
"clean": "rm -rf node_modules && rm -rf plugins && rm -rf platforms",
2022-05-24 14:49:24 +08:00
"initial": "node cmd/init.js",
"build": "cordova build android",
"dev": "node cmd/dev.js",
2022-05-26 09:46:31 +08:00
"logo": "node cmd/logo.js",
"build:www": "cordova build pwa"
2022-05-24 14:49:24 +08:00
},
"keywords": [
"ecosystem:cordova"
],
"author": "taoya7",
"license": "Apache-2.0",
"devDependencies": {
"cordova-android": "^10.1.2",
2022-05-24 15:37:14 +08:00
"cordova-plugin-battery-status": "^2.0.3",
"cordova-plugin-camera": "^6.0.0",
"cordova-plugin-device": "^2.1.0",
"cordova-plugin-dialogs": "^2.0.2",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-geolocation": "^4.1.0",
"cordova-plugin-inappbrowser": "^5.0.0",
"cordova-plugin-media": "^5.0.4",
"cordova-plugin-media-capture": "^3.0.3",
"cordova-plugin-network-information": "^3.0.0",
"cordova-plugin-screen-orientation": "^3.0.2",
"cordova-plugin-splashscreen": "^6.0.1",
"cordova-plugin-statusbar": "^3.0.0",
"cordova-plugin-vibration": "^3.1.1",
2022-05-26 09:46:31 +08:00
"es6-promise-plugin": "^4.2.2",
2023-05-22 11:36:53 +08:00
"phonegap-plugin-barcodescanner-jsg": "8.1.2",
"phonegap-plugin-barcodescanner-fix": "^8.1.1"
2022-05-24 14:49:24 +08:00
},
"cordova": {
"platforms": [
"android",
"browser"
],
"plugins": {
2022-05-24 15:37:14 +08:00
"cordova-plugin-camera": {
"ANDROIDX_CORE_VERSION": "1.6.+"
},
"cordova-plugin-device": {},
"cordova-plugin-battery-status": {},
"cordova-plugin-dialogs": {},
"cordova-plugin-geolocation": {
"GPS_REQUIRED": "true"
},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-media": {},
"cordova-plugin-media-capture": {},
"cordova-plugin-network-information": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-vibration": {},
2022-05-26 09:12:32 +08:00
"phonegap-plugin-barcodescanner-jsg": {},
2022-05-26 09:46:31 +08:00
"phonegap-plugin-barcodescanner": {
"ANDROID_SUPPORT_V4_VERSION": "27.+"
}
2022-05-24 14:49:24 +08:00
}
},
"dependencies": {
"chalk": "4.1.2",
"cordova": "^11.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"winston": "^3.7.2"
}
2023-05-22 11:36:53 +08:00
}