-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "hapns",
"version": "1.0.2",
"description": "Handle APNs notifications delivery without hussle",
"type": "module",
"scripts": {
"build": "rm -rf lib && pnpm tsc",
"prepublishOnly": "pnpm build",
"test": "node --test specs/*.spec.mjs"
},
"keywords": [],
"author": "Alexander P. Cerutti <cerutti.alexander@gmail.com>",
"devDependencies": {
"@types/node": "^22.15.17",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"hapns": "workspace:^"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexandercerutti/hapns.git"
},
"bugs": {
"url": "https://github.com/alexandercerutti/hapns/issues"
},
"exports": {
"./notifications/*": "./lib/notifications/*.js",
"./connectors/*": "./lib/connectors/*.js",
"./send": "./lib/send/index.js",
"./send/apns": "./lib/send/apns.js",
"./targets/*": "./lib/targets/*.js",
"./channels/*": "./lib/channels/*.js"
},
"dependencies": {
"fast-jwt": "^6.0.1",
"undici": "^7.9.0"
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=22.0.0"
}
}