-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "@smarchetti/localhost-proxy",
"version": "0.2.0",
"description": "Stable per-worktree dev URLs: run your dev server behind a local reverse proxy and reach each git worktree at http://<branch>.<repo>.test",
"type": "module",
"license": "MIT",
"bin": {
"lhp": "dist/lhp.js",
"localhost-proxy": "dist/lhp.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smarchetti/localhost-proxy.git"
},
"homepage": "https://localhost-proxy.vercel.app",
"bugs": {
"url": "https://github.com/smarchetti/localhost-proxy/issues"
},
"keywords": [
"reverse-proxy",
"git-worktree",
"dev-server",
"localhost",
"bun",
"nextjs",
"vite"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/lhp.ts src/daemon.ts --target=node --outdir=dist",
"typecheck": "tsc --noEmit",
"test": "bun run build && bun test/smoke.test.ts",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}