-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.31 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
{
"name": "@reopt-ai/dev-proxy",
"version": "1.1.2",
"description": "Subdomain-based reverse proxy and HTTP/WS traffic inspector TUI",
"license": "MIT",
"author": "reopt.ai",
"homepage": "https://github.com/reopt-ai/dev-proxy#readme",
"bugs": {
"url": "https://github.com/reopt-ai/dev-proxy/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/reopt-ai/dev-proxy.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"proxy",
"reverse-proxy",
"dev-tools",
"http-inspector",
"websocket",
"tui",
"terminal",
"ink",
"subdomain"
],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"bin": {
"dev-proxy": "bin/dev-proxy.js"
},
"files": [
"bin",
"dist",
"!dist/.tsbuildinfo",
"LICENSE",
"README.md",
"README_KO.md"
],
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "pnpm run clean && tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build",
"proxy": "pnpm run build && node dist/bootstrap.js",
"proxy:src": "node --import tsx/esm src/bootstrap.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test"
},
"dependencies": {
"ink": "^7.0.2",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"react": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.6",
"@types/node": "^25.5.0",
"@types/react": "^19.0.0",
"@vitest/coverage-v8": "^3.2.4",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.57.2",
"vitest": "^3.2.4"
}
}