-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "create-pwa",
"version": "2.7.0",
"description": "Easily create a progressive web app",
"keywords": [
"PWA",
"CLI",
"Web App",
"Manifest",
"Webmanifest",
"PWA Generator",
"Service Worker",
"Favicon Generator",
"Progressive Web App"
],
"homepage": "https://atanas.info/portfolio/open-source/create-pwa",
"bugs": {
"url": "https://github.com/scriptex/create-pwa/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "github:scriptex/create-pwa"
},
"scripts": {
"pwa": "rm -rf dist && node src/index.js --icon=./icon.png --launch=./launch.png --output=dist --icons=true --app-cache=true --manifest=true --favicons=true --service-worker=true --launch-screens=true",
"test": "tape test.js"
},
"dependencies": {
"png-to-ico": "2.1.8",
"sharp": "0.33.5",
"yargs": "17.7.2"
},
"devDependencies": {
"tape": "5.9.0"
},
"bin": {
"create-pwa": "./src/index.js"
}
}