-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
46
{
"name": "nostr-webpush-relay",
"version": "0.1.0",
"description": "Web Push relay for Nostr browser clients (NIP-17 → VAPID).",
"license": "AGPL-3.0-or-later",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"better-sqlite3": "^11.0.0",
"fastify": "^5.0.0",
"nostr-tools": "^2.7.0",
"pino": "^9.0.0",
"web-push": "^3.6.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.5.0",
"eslint": "^9.0.0",
"node-gyp": "^12.3.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^2.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"packageManager": "pnpm@9.15.0"
}