forked from danielsogl/awesome-cordova-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.1 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
{
"name": "awesome-cordova-plugins",
"version": "9.5.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": "^22.22.3 || ^24.15.0 || >=26.0.0"
},
"scripts": {
"prepare": "lefthook install",
"test": "vitest run",
"test:watch": "vitest",
"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 .",
"typecheck": "npm run build:core && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.spec.json && tsc -p scripts/tsconfig.json --noEmit",
"readmes": "tsx scripts/docs/generate-readmes",
"plugin:create": "tsx scripts/tasks/plugin-create",
"prettier": "prettier --write --ignore-unknown \"**/*\"",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/compiler": "22.1.1",
"@angular/compiler-cli": "22.1.1",
"@angular/core": "22.1.1",
"@eslint/js": "^10.0.1",
"@oxc-project/runtime": "^0.144.0",
"@types/cordova": "11.0.3",
"@types/node": "^26.2.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "^64.1.0",
"jsdom": "^30.0.1",
"lefthook": "^2.1.10",
"prettier": "^3.9.6",
"rxjs": "^7.8.2",
"tsx": "^4.23.12",
"typedoc": "^0.28.20",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vitest": "^4.1.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielsogl/awesome-cordova-plugins.git"
},
"bugs": {
"url": "https://github.com/danielsogl/awesome-cordova-plugins/issues"
},
"private": true
}