-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "vue-pwa-asset-generator",
"version": "1.7.3",
"description": "VueJS asset generator for PWA",
"main": "./script/index.js",
"bin": {
"vue-asset-generate": "./script/index.js"
},
"scripts": {
"release": "release-it",
"test:png": "./script/index.js -a ./docs/rainbow.png -o ./output",
"test:svg": "reset && ./script/index.js -a ./docs/rainbow.svg -o ./output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcalixte/vue-pwa-asset-generator.git"
},
"keywords": [
"VueJS",
"PWA",
"generator"
],
"author": "Julien Calixte",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcalixte/vue-pwa-asset-generator/issues"
},
"homepage": "https://github.com/jcalixte/vue-pwa-asset-generator#readme",
"dependencies": {
"chalk": "^4.1.0",
"potrace": "^2.1.8",
"sharp": "^0.32.6",
"to-ico": "^1.1.5",
"yargs": "^17.6.2"
},
"devDependencies": {
"release-it": "^15.5.0"
},
"pnpm": {
"overrides": {
"minimist@<1.2.6": ">=1.2.6",
"minimist@<0.2.1": ">=0.2.1",
"jpeg-js@<0.4.4": ">=0.4.4",
"got@<11.8.5": ">=11.8.5",
"parse-url@<6.0.1": ">=6.0.1",
"parse-path@<5.0.0": ">=5.0.0",
"jpeg-js@<0.4.0": ">=0.4.0",
"parse-url@<8.1.0": ">=8.1.0"
}
}
}