-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.5 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.5 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
90
91
{
"name": "tailscale-proxy",
"version": "0.0.0",
"description": "Discover local dev servers by port and expose them through one Tailscale Serve/Funnel entry, routed by project name.",
"keywords": [
"tailscale",
"tailscale-funnel",
"tailscale-serve",
"funnel",
"serve",
"reverse-proxy",
"proxy",
"dev",
"discovery",
"localhost",
"tunnel",
"ngrok",
"ngrok-alternative",
"localtunnel"
],
"homepage": "https://github.com/meabed/tailscale-proxy#readme",
"bugs": {
"url": "https://github.com/meabed/tailscale-proxy/issues",
"email": "mo@meabed.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meabed/tailscale-proxy.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/meabed"
},
"license": "MIT",
"author": {
"name": "Mohamed Meabed",
"email": "mo@meabed.com",
"url": "https://meabed.com"
},
"bin": {
"tailscale-proxy": "bin/launcher.js",
"tsp": "bin/launcher.js"
},
"files": [
"bin/launcher.js",
"README.md"
],
"scripts": {
"lint": "gofmt -l . && go vet ./...",
"format": "gofmt -w .",
"test": "go test ./...",
"test-ci": "go test -race -count=1 ./...",
"build:binaries": "goreleaser release --clean --snapshot --skip=publish,announce",
"build:npm": "node npm/build-platform-packages.mjs",
"prepare": "if [ -z \"$CI\" ] && [ -e .git ] && [ -x ./node_modules/.bin/husky ]; then ./node_modules/.bin/husky; fi",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"release:local": "node scripts/release-local.mjs"
},
"lint-staged": {
"*.go": [
"gofmt -w"
]
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"conventional-changelog-conventionalcommits": "^9.3.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.6",
"semantic-release": "^25.0.3"
},
"optionalDependencies": {
"tailscale-proxy-darwin-arm64": "0.0.0",
"tailscale-proxy-darwin-x64": "0.0.0",
"tailscale-proxy-linux-x64": "0.0.0",
"tailscale-proxy-linux-arm64": "0.0.0",
"tailscale-proxy-win32-x64": "0.0.0",
"tailscale-proxy-win32-arm64": "0.0.0"
},
"packageManager": "bun@1.3.14",
"engines": {
"node": ">= 18.0"
},
"publishConfig": {
"access": "public"
}
}