forked from rayriffy/miko
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1002 Bytes
/
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
{
"name": "miko",
"version": "1.0.0",
"description": "let's slap some table",
"main": "index.js",
"repository": "git@github.com:rayriffy/miko.git",
"author": "Phumrapee Limpianchop <contact@rayriffy.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-pwa-manifest": "^3.0.10",
"parcel-plugin-sw-cache": "^0.3.1",
"typescript": "^3.9.6"
},
"pwaManifest": {
"name": "ミコ",
"shortName": "ミコ",
"startURL": "./",
"theme": "#1a202c",
"generateIconOptions": {
"baseIcon": "./src/img/favicon.png",
"sizes": [
192,
384,
512
],
"display": "standalone",
"purpose": [
"any",
"maskable"
],
"genFavicons": true
}
},
"cache": {
"disablePlugin": false,
"inDev": false,
"strategy": "default"
}
}