-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "europa-node",
"version": "0.7.0",
"description": "Reference operator daemon for the VPN Marketplace (NIP-99 + LNURL + Cashu + WireGuard).",
"license": "MIT",
"repository": "github:btcjt/europa-node",
"type": "module",
"scripts": {
"dev": "tsx --watch src/index.ts",
"start": "node dist/index.cjs",
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:better-sqlite3",
"check-types": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@cashu/cashu-ts": "^2.5.2",
"@fastify/cors": "^10.0.1",
"@nostr-dev-kit/ndk": "^3.0.3",
"@nostr-dev-kit/wallet": "^1.0.0",
"better-sqlite3": "^11.5.0",
"execa": "^9.5.1",
"fastify": "^5.1.0",
"nostr-tools": "^2.7.2",
"smol-toml": "^1.3.1",
"websocket-polyfill": "^0.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.15.32",
"esbuild": "^0.21.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2"
},
"engines": {
"node": ">=20"
}
}