-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.01 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "awesome-cordova-plugins",
"version": "9.1.4",
"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.30",
"@swc/jest": "^0.2.39",
"@types/cordova": "11.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.17",
"eslint": "^10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "^62.9.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lefthook": "^2.1.6",
"prettier": "^3.8.3",
"rollup": "^4.60.2",
"rxjs": "^7.8.2",
"tsx": "^4.21.0",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.59.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielsogl/awesome-cordova-plugins.git"
},
"bugs": {
"url": "https://github.com/danielsogl/awesome-cordova-plugins/issues"
}
}