-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
41 lines (41 loc) · 863 Bytes
/
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
{
"name": "bostr",
"version": "3.1.0",
"description": "Nostr relay bouncer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"bin": {
"bostr": "bostr_cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Yonle/bostr.git"
},
"keywords": [
"nostr",
"bouncer",
"websocket",
"proxy"
],
"author": "Yonle <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://codeberg.org/Yonle/bostr/issues"
},
"homepage": "https://codeberg.org/Yonle/bostr#readme",
"dependencies": {
"nostr-tools": "^2.10.4",
"undici": "^7.2.0",
"ws": "^8.18.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"utf-8-validate": "^6.0.5"
},
"engines": {
"node": ">=20"
}
}