forked from ionic-team/capacitor-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@capacitor/assets",
"version": "2.0.4",
"description": "Generate icon and splash screen images for Capacitor apps",
"homepage": "https://ionicframework.com",
"author": "Ionic Team <hi@ionicframework.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.3.0"
},
"bin": {
"capacitor-assets": "./bin/capacitor-assets"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --maxWorkers=4",
"lint": "npm run eslint && npm run prettier -- --check",
"fmt": "npm run prettier -- --write",
"eslint": "eslint . --ext ts",
"prettier": "prettier 'src/**/*.ts'",
"release": "np",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged"
}
},
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"files": [
"bin",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/capacitor-assets.git"
},
"bugs": {
"url": "https://github.com/ionic-team/capacitor-assets/issues"
},
"keywords": [
"ionic",
"capacitor",
"resources",
"mobile",
"native",
"icon",
"splash screen"
],
"dependencies": {
"@capacitor/cli": "^3.2.5",
"@ionic/utils-array": "^2.1.5",
"@ionic/utils-fs": "^3.1.5",
"@trapezedev/project": "^5.0.5",
"commander": "^8.3.0",
"debug": "^4.2.0",
"fs-extra": "^10.0.1",
"node-fetch": "^2.6.7",
"node-html-parser": "^5.3.3",
"sharp": "^0.30.7",
"tslib": "^2.0.3",
"yargs": "^17.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.24.4",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^2.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^27.4.1",
"@types/fs-extra": "^9.0.13",
"@types/slice-ansi": "^5.0.0",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@types/rimraf": "^3.0.2",
"@types/sharp": "^0.29.2",
"eslint": "^7.32.0",
"husky": "^4.3.0",
"jest": "^27.5.1",
"np": "^7.0.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"tempy": "^1.0.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"volta": {
"node": "16.13.2",
"npm": "8.3.0"
}
}