forked from Eneris/push-receiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@eneris/push-receiver",
"version": "4.2.0",
"description": "A module to subscribe to GCM/FCM and receive notifications within a node process.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package*",
"*.md"
],
"scripts": {
"protos:convert": "yarn pbjs -t static-module --force-long --wrap commonjs -o ./src/protos.js ./src/protos/*.proto",
"protos": "yarn pbts -o ./src/protos.d.ts ./src/protos.js",
"protos:build": "yarn protos:convert && yarn protos",
"protos:copy": "cp ./src/protos.* ./dist/",
"build": "yarn protos:build && yarn tsc && yarn protos:copy",
"prepublish": "yarn build",
"lint": "yarn eslint src --ext .ts",
"precommit": "yarn lint && yarn build",
"prepare": "yarn prepublish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/eneris/push-receiver.git"
},
"keywords": [
"push",
"service",
"fcm",
"gcm",
"notifications",
"node",
"electron",
"receiver"
],
"author": "Eneris & MatthieuLemoine",
"license": "MIT",
"bugs": {
"url": "https://github.com/eneris/push-receiver/issues"
},
"homepage": "https://github.com/eneris/push-receiver#readme",
"devDependencies": {
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"protobufjs-cli": "^1.1.3",
"typescript": "^5.5.4"
},
"dependencies": {
"http_ece": "^1.2.1",
"jsonwebtoken": "^9.0.2",
"long": "^5.2.3",
"protobufjs": "^7.3.3"
},
"engines": {
"node": ">=20"
}
}