-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.13 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
{
"name": "invisiproxy",
"version": "7.0.0",
"repository": "https://github.com/QuiteAFancyEmerald/InvisiProxy",
"description": "InvisiProxy LTS is a web proxy service that helps you access websites that may be blocked by your network, government or policy all within your browser with no download or setup.",
"main": "backend.js",
"scripts": {
"fresh-install": "pnpm update && pnpm ci",
"fresh-start": "pnpm run fresh-install && pnpm start",
"start": "pnpm stop && pnpm run build && pnpm run manual-start",
"restart": "node run-command.mjs stop start",
"stop": "node run-command.mjs stop",
"test": "pnpm run proxy-validator",
"manual-start": "node run-command.mjs start",
"kill": "node run-command.mjs stop kill",
"fetch-adblock": "curl -o views/assets/txt/blacklist.txt https://raw.githubusercontent.com/hagezi/dns-blocklists/main/domains/pro.txt",
"build": "node run-command.mjs build",
"clear": "node run-command.mjs clean",
"clean": "node run-command.mjs clean format",
"proxy-validator": "node proxyServiceValidator.js",
"workflow-test": "node run-command.mjs workflow",
"deployment": "pnpm install && pnpm run build && node backend.js",
"postinstall": "playwright install chromium"
},
"keywords": [
"proxy",
"node.js",
"unblocker"
],
"author": "TitaniumNetwork",
"license": "AGPL-3.0-only",
"dependencies": {
"@fastify/helmet": "^13.0.2",
"@fastify/static": "^9.1.3",
"@mercuryworkshop/bare-mux": "^2.1.9",
"@mercuryworkshop/epoxy-transport": "^3.0.1",
"@mercuryworkshop/libcurl-transport": "^2.0.5",
"@mercuryworkshop/scramjet": "2.0.67-alpha.1",
"@mercuryworkshop/scramjet-controller": "0.0.13",
"@titaniumnetwork-dev/ultraviolet": "https://github.com/titaniumnetwork-dev/Ultraviolet/releases/download/v3.2.8/titaniumnetwork-dev-ultraviolet-headers.tgz",
"axios": "^1.17.0",
"chii": "^1.15.5",
"fastify": "^5.8.5",
"mrrowisp": "^3.1.6",
"pm2": "^7.0.1",
"utf-8-validate": "^6.0.6",
"ws": "^8.21.0"
},
"devDependencies": {
"@babel/node": "^7.29.7",
"esbuild": "^0.27.7",
"playwright": "^1.60.0"
}
}