cordova-13/package.json

65 lines
1.9 KiB
JSON
Raw Normal View History

2024-12-16 20:56:14 +08:00
{
"name": "io.cordova.hellocordova",
"displayName": "cordova",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"ad": "cordova platform rm android && cordova platform add android && cordova build android",
"clean": "rm -rf node_modules && rm -rf plugins && rm -rf platforms",
"initial": "tsx src/init.ts",
"build": "cordova build android",
"dev": "node scripts/dev.js",
"logo": "tsx scripts/logo.ts",
"allInOne": "npm run clean && npm i && npm run ad"
},
"keywords": [],
"author": "taolin taolin@taoya.art",
"license": "Apache-2.0",
"devDependencies": {
"@clack/prompts": "^0.8.2",
"@types/node": "^22.10.2",
"axios": "^1.7.9",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"cordova": "^12.0.0",
"cordova-android": "^13.0.0",
2024-12-16 21:06:03 +08:00
"cordova-plugin-app-version": "^0.1.14",
"cordova-plugin-battery-status": "^2.0.3",
"cordova-plugin-camera": "^2.4.1",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-device": "^2.1.0",
"cordova-plugin-file": "^4.3.3",
"cordova-plugin-geolocation": "^2.4.3",
"cordova-plugin-media": "^2.4.1",
"cordova-plugin-screen-orientation": "^3.0.4",
"cordova-plugin-statusbar": "^3.0.0",
"cordova-plugin-vibration": "^3.1.1",
2024-12-16 20:56:14 +08:00
"es6-promise-plugin": "^4.2.2",
"eslint": "^9.17.0",
"picocolors": "^1.1.1",
"tsx": "^4.19.2",
"typeorm": "^0.3.20",
"zod": "^3.24.1"
},
"cordova": {
"platforms": [
"browser",
"android"
],
2024-12-16 21:06:03 +08:00
"plugins": {
"cordova-plugin-app-version": {},
"cordova-plugin-battery-status": {},
"cordova-plugin-device": {},
"cordova-plugin-geolocation": {},
"cordova-plugin-media": {},
"cordova-plugin-vibration": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-screen-orientation": {}
}
2024-12-16 20:56:14 +08:00
},
"dependencies": {
"commander": "^12.1.0"
}
}