-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "apns2",
"version": "11.8.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 <[email protected]>",
"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": {
"fast-jwt": "^4.0.5",
"fetch-http2": "^1.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node16": "^16.1.3",
"@types/node": "^22.9.0",
"chai": "^5.1.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"scripts": {
"build": "tsc",
"lint": "biome ci src test",
"lint:format": "biome format --write src test",
"lint:check": "biome check --write --unsafe src test",
"test": "vitest --run --dir test"
}
}