-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "hyper-nostr",
"version": "1.8.3",
"description": "a distributed local-first nostr relay that syncs on background based on topic",
"main": "swarm.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Ruulul/hyper-nostr"
},
"funding": [
"https://getalby.com/p/v_142857",
"https://ko-fi.com/v142857"
],
"bin": {
"hyper-nostr": "server.js",
"hyper-nostr-db-explorer": "db_explore.js"
},
"scripts": {
"test": "pnpm lint && tape tests/**/*.js",
"lint": "standard --fix",
"start": "pnpm lint && node server.js"
},
"dependencies": {
"@fastify/websocket": "^8.0.0",
"autobase": "github:holepunchto/autobase",
"autodeebee": "^1.0.1",
"fastify": "^4.17.0",
"graceful-goodbye": "^1.2.1",
"hyper-sdk": "^4.2.4",
"hyperbee": "^2.8.0",
"hyperdeebee": "github:Telios-org/hyperdeebee",
"nostr-tools": "^1.10.1",
"tape": "^5.6.3"
},
"keywords": [
"local-first",
"distributed",
"p2p",
"nostr",
"hypercore"
],
"author": "v142857",
"license": "MIT",
"devDependencies": {
"standard": "^17.0.0"
}
}