-
-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.09 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.09 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "green-tunnel",
"version": "2.0.2",
"description": "",
"keywords": [
"HTTPS",
"SNI",
"VPN"
],
"homepage": "https://github.com/SadeghHayeri/GreenTunnel#readme",
"bugs": {
"url": "https://github.com/SadeghHayeri/GreenTunnel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SadeghHayeri/GreenTunnel.git"
},
"license": "MIT",
"author": "Sadegh Hayeri",
"files": [
"bin",
"src"
],
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"bin": {
"green-tunnel": "bin/gt.js",
"gt": "bin/gt.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chalk": "^5.6.2",
"clear": "^0.1.0",
"debug": "^4.4.0",
"dns-over-tls": "^0.0.9",
"dns-socket": "^4.2.2",
"lru-cache": "^11.2.6",
"ora": "^9.3.0",
"validator": "^13.15.26",
"winreg": "^1.2.5",
"yargs": "^18.0.0"
},
"devDependencies": {
"eslint": "^9.39.3",
"eslint-config-xo": "^0.49.0"
}
}