-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "pushkit",
"version": "3.2.1",
"keywords": [
"push",
"notification",
"pushnotification",
"web push",
"self hosted push",
"web-push",
"service worker",
"pwa",
"progressive web app"
],
"homepage": "https://theanam.github.io/pushkit",
"repository": {
"type": "git",
"url": "[email protected]:theanam/pushkit.git"
},
"main": "server/index.js",
"types": "server/setver.d.ts",
"license": "MIT",
"dependencies": {
"web-push": "^3.4.4"
},
"devDependencies": {
"clipboard": "^2.0.6",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.8"
},
"scripts": {
"build-client": "parcel build client/index.js -d client/dist --global pushKit",
"watch-client": "parcel watch client/index.js -d client/dist --global pushKit",
"publish-page": "yarn build-example && npx gh-pages -d dist-example && rm -rf dist-example",
"run-example": "mkdir -p temp-example && cp example/sw.js temp-example/ && parcel example/index.html -d temp-example",
"build-example": "parcel build example/index.html -d dist-example --public-url /pushkit && cp example/sw.js dist-example && cp example/pushkit.png dist-example"
}
}