-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.49 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
56
57
58
59
60
61
62
{
"name": "h2tunnel",
"description": "Zero-dependency remote port forwarding (TCP over HTTP/2)",
"version": "0.3.1",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/boronine/h2tunnel#readme",
"keywords": [
"tls",
"http2",
"tunnel",
"localhost",
"multiplexing",
"ngrok"
],
"author": {
"name": "Alexei Boronine",
"email": "[email protected]",
"url": "https://www.boronine.com"
},
"bugs": {
"url": "https://github.com/boronine/h2tunnel/issues"
},
"devDependencies": {
"@types/node": "^22.7.5",
"typescript": "^5.6.3",
"prettier": "^3.3.3",
"c8": "^10.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boronine/h2tunnel.git"
},
"exports": {
".": {
"types": "./build/h2tunnel.d.ts",
"import": "./build/h2tunnel.js"
}
},
"files": [
"README.md",
"LICENSE",
"package.json",
"build/h2tunnel.js",
"build/h2tunnel.d.ts",
"build/cli.js",
"build/cli.d.ts"
],
"bin": {
"h2tunnel": "./build/cli.js"
},
"scripts": {
"format": "npx prettier --write .",
"build": "npx tsc",
"test": "npx tsc && node --enable-source-maps --test --experimental-test-coverage build/h2tunnel.test.js",
"test_only": "npx tsc && node --enable-source-maps --test --experimental-test-coverage --test-only build/h2tunnel.test.js",
"coverage": "npx tsc && c8 --reporter html node build/h2tunnel.test.js"
},
"engines": {
"node": ">=18"
}
}