mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-08-04 00:00:08 +08:00
Angular 21 needs typescript >=5.9 <6.1; the pinned ~5.9.3 already satisfies it, and the node engine range is unchanged from 20. Verified against the published 9.3.0 artifacts (built with Angular 20.3.18): the emitted .d.ts files are byte-identical and the only diff in the emitted JS is the partial-compilation metadata string, version "20.3.18" -> "21.2.18". minVersion stays "12.0.0", so the Angular linker floor for consumers does not move — the library only uses @Injectable, whose declaration format has been stable since Angular 12. Raises the renovate cap accordingly. Angular 22 stays out: it requires typescript >=6.0 <6.1, which turns the `module: ES2022` + `moduleResolution: Node16` pair in scripts/build/ngx.ts into a hard TS5110 error.
63 lines
2.0 KiB
JSON
63 lines
2.0 KiB
JSON
{
|
|
"name": "awesome-cordova-plugins",
|
|
"version": "9.3.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": "21.2.18",
|
|
"@angular/compiler": "21.2.18",
|
|
"@angular/compiler-cli": "21.2.18",
|
|
"@angular/core": "21.2.18",
|
|
"@eslint/js": "^10.0.0",
|
|
"@swc/core": "^1.15.46",
|
|
"@swc/jest": "^0.2.39",
|
|
"@types/cordova": "11.0.3",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.13.3",
|
|
"eslint": "^10.8.0",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"eslint-plugin-jsdoc": "^63.3.1",
|
|
"jest": "^30.4.2",
|
|
"jest-environment-jsdom": "^30.4.1",
|
|
"lefthook": "^2.1.10",
|
|
"prettier": "^3.9.6",
|
|
"rollup": "^4.62.3",
|
|
"rxjs": "^7.8.2",
|
|
"tsx": "^4.23.1",
|
|
"typedoc": "^0.28.20",
|
|
"typedoc-plugin-markdown": "^4.12.0",
|
|
"typescript": "~5.9.3",
|
|
"typescript-eslint": "^8.65.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/danielsogl/awesome-cordova-plugins.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/danielsogl/awesome-cordova-plugins/issues"
|
|
}
|
|
}
|