-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
49
50
51
52
53
54
55
{
"type": "module",
"name": "http2nostr",
"version": "1.2.0",
"description": "A simple http proxy that forwards all requests as a new kind of nostr events",
"exports": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"docker:build": "docker buildx build --platform linux/arm64,linux/amd64 --tag orenz0/http2nostr:latest --tag orenz0/http2nostr:v$(node -p \"require('./package.json').version\") . --output \"type=registry\"",
"lint": "eslint .",
"clean": "rm -rf dist",
"build": "tsc",
"fix": "eslint . --fix"
},
"bin": {
"http2nostr": "./dist/index.js"
},
"engines": {
"node": ">=20.12.2"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oren-z0/http2nostr.git"
},
"keywords": [
"nostr",
"http",
"proxy"
],
"author": "Oren <orenz0@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oren-z0/http2nostr/issues"
},
"homepage": "https://github.com/oren-z0/http2nostr#readme",
"dependencies": {
"commander": "^12.1.0",
"es-main": "^1.3.0",
"nostr-tools": "^2.7.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}