Files
awesome-cordova-plugins/package.json
Daniel Sogl a5e3ccd185 feat!: modernize all dependencies
Update all core dependencies to latest versions: Angular 20, TypeScript
5.8, RxJS 7.8, zone.js 0.15. Bump Node.js engine requirement to >=20.
Update all devDependencies to current versions.

BREAKING CHANGE: Requires Node.js 20+ and Angular 20+.
2026-03-21 15:16:05 -07:00

64 lines
2.0 KiB
JSON

{
"name": "awesome-cordova-plugins",
"version": "8.1.0",
"description": "Native plugin wrappers for Cordova and Ionic with TypeScript, ES6+, Promise and Observable support",
"homepage": "https://awesome-cordova-plugins.com",
"author": "Daniel Sogl <me@danielsogl.com> (https://danielsogl.com)",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "lefthook install",
"test": "jest",
"test:watch": "jest --watch",
"build:core": "tsc -p tsconfig.core.json",
"build:esm": "tsx scripts/tasks/build-esm",
"build:ngx": "tsx scripts/tasks/build-ngx",
"build": "npm run build:core && npm run build:esm && npm run build:ngx",
"prebuild": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"npmpub": "tsx scripts/tasks/publish",
"lint": "eslint src/**/*.ts",
"readmes": "tsx scripts/docs/generate-readmes",
"plugin:create": "tsx scripts/tasks/plugin-create",
"prettier": "prettier --write --ignore-unknown \"**/*\""
},
"dependencies": {
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/common": "20.3.18",
"@angular/compiler": "20.3.18",
"@angular/compiler-cli": "20.3.18",
"@angular/core": "20.3.18",
"@eslint/js": "^10.0.0",
"@swc/core": "^1.15.18",
"@swc/jest": "^0.2.39",
"@types/cordova": "11.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "^62.8.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lefthook": "^2.1.4",
"prettier": "^3.5.0",
"rollup": "^4.59.0",
"rxjs": "^7.8.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.57.1",
"zone.js": "~0.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielsogl/awesome-cordova-plugins.git"
},
"bugs": {
"url": "https://github.com/danielsogl/awesome-cordova-plugins/issues"
}
}