forked from miafoo/fcm-web-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@miafoo/fcm-web-push",
"version": "1.6.6",
"private": false,
"description": "A very minimal web push notification server using Firebase Cloud Messaging (FCM) for Node (and Electron)",
"repository": {
"type": "git",
"url": "https://github.com/miafoo/fcm-web-push.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"proto",
"src"
],
"scripts": {
"build": "tsc",
"lint": "biome check src",
"lint:fix": "biome check src --apply",
"proto:generate": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=forceLong=bigint --ts_proto_opt=snakeToCamel=false --ts_proto_opt=useSnakeTypeName=false --ts_proto_out=./src/proto -I=./proto ./proto/*.proto",
"prepack": "npm run build",
"prepublishOnly": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"fcm",
"web-push",
"push-notifications",
"firebase-cloud-messaging",
"node",
"electron"
],
"author": "Mia",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/node": "^20.11.16",
"typescript": "^5.3.3"
},
"dependencies": {
"ts-proto": "^1.167.3"
},
"engines": {
"node": ">=18.0.0"
}
}