forked from AndrewBarba/apns2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1000 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
46
47
{
"name": "apns2",
"version": "11.5.0",
"description": "Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.",
"author": "Andrew Barba <barba@hey.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=16"
},
"repository": {
"url": "https://github.com/AndrewBarba/apns2"
},
"files": ["dist"],
"keywords": [
"apn",
"apns",
"apns2",
"push",
"notification",
"http2",
"jwt",
"apple",
"ios",
"macos",
"tvos",
"watchos"
],
"dependencies": {
"fetch-http2": "^1.4.0",
"fast-jwt": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@tsconfig/node16": "^16.1.1",
"@types/node": "^20.11.6",
"chai": "^5.0.3",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"scripts": {
"build": "tsc",
"lint": "biome ci src test",
"test": "vitest --run --dir test"
}
}