-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.48 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
{
"name": "divetools2",
"dependencies": {
"@shish2k/hyperapp-navigation": "^1.0.1",
"hyperapp": "^2.0.22",
"hyperapp-fx": "^2.0.0-beta.2",
"hyperapp-jsx-pragma": "^1.3.0"
},
"repository": "https://github.com/shish/divetools2/",
"license": "GPL-3.0-only",
"scripts": {
"build": "parcel build --public-url . src/index.html",
"watch": "parcel watch --public-url . src/index.html",
"serve": "parcel serve --port 1236 src/index.html",
"analyze": "parcel build --public-url . src/index.html --reporter @parcel/reporter-bundle-analyzer",
"format": "prettier --write 'src/**/*.ts{,x}' --tab-width 4 --trailing-comma all"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.8.0",
"@parcel/packager-xml": "^2.8.0",
"@parcel/transformer-sass": "^2.8.0",
"parcel": "^2.8.0",
"parcel-config-pwa-manifest": "^0.1.2",
"prettier": "^2.8.3"
},
"pwaManifest": {
"name": "DiveTools",
"shortName": "DiveTools",
"startURL": ".",
"theme": "#B9FFFF",
"display": "standalone",
"orientation": "portrait",
"generateIconOptions": {
"baseIcon": "./src/static/favicon.svg",
"appleTouchIconPadding": 0,
"sizes": [
192,
384,
512
],
"purpose": ["maskable", "any"],
"genFavicons": true
}
}
}