-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mullgate",
"version": "2.0.4",
"author": "Microck",
"keywords": [
"mullvad",
"proxy",
"cli",
"vpn",
"socks5",
"wireguard",
"mullgate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Microck/mullgate.git"
},
"homepage": "https://github.com/Microck/mullgate#readme",
"bugs": {
"url": "https://github.com/Microck/mullgate/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "Authenticated Mullvad-backed SOCKS5, HTTP, and HTTPS proxy CLI",
"type": "module",
"bin": {
"mullgate": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc --pretty false -p tsconfig.build.json",
"typecheck": "tsc --pretty false --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"format:check": "biome format --check .",
"test": "tsx scripts/test.ts",
"test:coverage": "tsx scripts/test.ts -- --run --coverage",
"demo:record": "tsx scripts/record-demos.ts",
"demo:verify": "tsx scripts/verify-demos.ts",
"check": "pnpm lint && pnpm typecheck && pnpm test -- --run",
"cli": "tsx src/cli.ts",
"verify:s06": "tsx scripts/verify-s06-release.ts",
"verify:s02-runtime": "tsx scripts/verify-s02-runtime.ts",
"verify:m004-feasibility": "tsx scripts/verify-m004-feasibility.ts",
"verify:tailscale-feasibility": "tsx scripts/verify-tailscale-feasibility.ts",
"verify:m004-compatibility": "tsx scripts/verify-m004-compatibility.ts",
"verify:m004": "tsx scripts/verify-m004.ts",
"verify:m002-network-modes": "tsx scripts/verify-m002-network-modes.ts",
"verify:m002-platform-surfaces": "tsx scripts/verify-m002-platform-surfaces.ts",
"verify:m002-final": "tsx scripts/verify-m002-final.ts",
"verify:m003-repo-baseline": "tsx scripts/verify-m003-repo-baseline.ts",
"verify:m003-install-path": "tsx scripts/verify-m003-install-path.ts",
"verify:install-smoke": "tsx scripts/verify-install-smoke.ts",
"prepare": "simple-git-hooks"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"commander": "^14.0.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "4.1.8",
"simple-git-hooks": "2.13.1",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vite": "8.0.16",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@10.18.3",
"pnpm": {
"overrides": {
"vite": "8.0.16"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint && pnpm typecheck"
}
}