-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.59 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.59 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@openapi-typescript-infra/cluster-proxy",
"version": "0.0.0",
"description": "Configurable cluster-aware HTTP/S proxy for local development with DNS, TLS, service registry, and TUI",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
},
"./bin/cluster-proxy": "./build/bin/cluster-proxy.js"
},
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"config",
"Makefile",
"README.md"
],
"scripts": {
"test": "vitest",
"lint": "eslint .",
"build": "tsc -p tsconfig.build.json && yarn dlx glob-chmod 755 build/bin/*",
"watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
"clean": "npx rimraf ./build",
"prepublishOnly": "yarn build",
"postinstall": "cpconfig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openapi-typescript-infra/cluster-proxy.git"
},
"bin": "build/bin/cluster-proxy.js",
"config": {
"cpconfig": "@openapi-typescript-infra/cpconfig"
},
"engines": {
"node": ">22.0.0"
},
"author": "Max Metral <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"proxy",
"development",
"cluster",
"dns",
"tui",
"service-discovery"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"publishCmd": "yarn dlx pinst --disable"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"devDependencies": {
"@openapi-typescript-infra/cpconfig": "^1.1.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/dns2": "^2.0.10",
"@types/figlet": "^1.7.0",
"@types/http-proxy": "^1.17.17",
"@types/lodash.isequal": "^4.5.8",
"@types/minimist": "^1.2.5",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"cpconfig": "^1.4.4",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"dns2": "^2.1.0",
"figlet": "^1.11.0",
"http-proxy": "^1.18.1",
"ink": "^6.8.0",
"lodash.isequal": "^4.5.0",
"minimist": "^1.2.8",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"portfinder": "^1.0.38",
"react": "^19.2.4"
},
"packageManager": "[email protected]"
}