forked from ionic-team/capacitor-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.43 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
98
99
100
101
{
"name": "@capacitor/assets",
"version": "3.0.5",
"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": {
"prepare": "husky install",
"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'",
"prepublishOnly": "npm run build"
},
"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": {
"@ionic/utils-array": "2.1.6",
"@ionic/utils-fs": "3.1.7",
"@trapezedev/project": "^7.0.10",
"commander": "8.3.0",
"debug": "4.3.4",
"fs-extra": "10.1.0",
"node-fetch": "2.7.0",
"node-html-parser": "5.4.2",
"sharp": "0.32.6",
"tslib": "2.6.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@capacitor/cli": "^6.0.0",
"@changesets/cli": "2.26.2",
"@ionic/eslint-config": "0.3.0",
"@ionic/prettier-config": "4.0.0",
"@types/debug": "4.1.8",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.5.2",
"@types/node": "^18.17.15",
"@types/node-fetch": "2.6.5",
"@types/plist": "3.0.2",
"@types/rimraf": "3.0.2",
"@types/slice-ansi": "5.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"eslint": "7.32.0",
"husky": "^8.0.1",
"jest": "27.5.1",
"np": "7.7.0",
"prettier": "3.0.3",
"rimraf": "3.0.2",
"tempy": "1.0.1",
"ts-jest": "27.1.5",
"typescript": "4.4.4"
},
"overrides": {
"@capacitor/cli": {
"plist": {
"@xmldom/xmldom": "0.8.4"
}
},
"@trapezedev/project": {
"@xmldom/xmldom": "0.7.7",
"mergexml": {
"@xmldom/xmldom": "0.7.7"
}
}
}
}