-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1 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
{
"name": "pwa-icon-gen",
"description": "A CLI tool for generating PWA PNG icons of different sizes from an existing image.",
"keywords": [
"pwa",
"icon",
"generator",
"gen",
"progressive-web-app",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/ChrisBrownie55/pwa-icon-gen.git"
},
"homepage": "https://github.com/ChrisBrownie55/pwa-icon-gen#readme",
"bugs": {
"url": "https://github.com/ChrisBrownie55/pwa-icon-gen/issues",
"email": "[email protected]"
},
"version": "1.0.3",
"main": "./src/index.js",
"bin": {
"pwa-icon-gen": "./src/cli.js"
},
"files": [
"src/**"
],
"license": "MIT",
"dependencies": {
"@chbphone55/pretty-bytes": "^1.0.0",
"import-jsx": "^2.0.0",
"ink": "^2.1.1",
"ink-spinner": "^3.0.1",
"minimist": "^1.2.5",
"react": "^16.8.6",
"sharp": "^0.22.0"
},
"scripts": {
"test": "node ./src/cli.js logo.svg --out=test-out/ --sizes=75,100,125",
"format": "prettier --write ."
},
"devDependencies": {
"prettier": "^2.2.0"
}
}