-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 1.87 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
{
"name": "@capacitor/create-plugin",
"version": "0.18.1",
"description": "Generate a new Capacitor plugin",
"author": "Ionic Team <[email protected]>",
"homepage": "https://capacitorjs.com",
"engines": {
"node": ">=18.9.0"
},
"main": "./dist/index.js",
"bin": {
"create-capacitor-plugin": "bin/create-capacitor-plugin"
},
"scripts": {
"pack-assets": "node ./scripts/pack-assets.mjs",
"lint": "npm run eslint && npm run prettier -- --check",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.{css,html,js,mjs,ts}\"",
"build": "npm run clean && npm run pack-assets && tsc",
"clean": "rimraf ./dist",
"watch": "tsc -w",
"release": "np --no-tests",
"prepublishOnly": "npm run build"
},
"files": [
"assets/plugin-template.tar.gz",
"assets/www-template.tar.gz",
"bin/",
"dist/"
],
"keywords": [
"capacitor",
"universal app",
"progressive web apps",
"cross platform"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/create-capacitor-plugin.git"
},
"bugs": {
"url": "https://github.com/ionic-team/create-capacitor-plugin/issues"
},
"license": "MIT",
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"dependencies": {
"debug": "^4.3.4",
"kleur": "^4.1.5",
"mustache": "^4.2.0",
"prompts": "^2.4.2",
"tar": "^6.1.11",
"tslib": "^2.6.2"
},
"devDependencies": {
"@ionic/eslint-config": "^0.4.0",
"@ionic/prettier-config": "^4.0.0",
"@types/debug": "^4.1.12",
"@types/mustache": "^4.2.5",
"@types/prompts": "^2.4.9",
"@types/tar": "^6.1.13",
"eslint": "^8.57.0",
"np": "^10.0.5",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "~5.1.0"
}
}