-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.03 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.03 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
{
"name": "httpsandwich",
"version": "0.0.4",
"description": "httpSandwich - HTTP monitor-in-the-middle. A transparent proxy for monitoring HTTP traffic between client and server.",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"httpSandwich": "./dist/cli/main.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"start": "tsx src/cli/main.ts",
"dev": "tsx watch src/cli/main.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"quality": "npm run lint:check && npm run format:check && npm run typecheck && npm run test",
"quality:fix": "npm run lint && npm run format && npm run typecheck",
"prepublishOnly": "npm run quality && npm run build"
},
"keywords": [
"cli",
"debugging",
"developer-tools",
"devtools",
"http",
"http-proxy",
"inspector",
"man-in-the-middle",
"mitm",
"monitor",
"network",
"proxy",
"traffic",
"tui"
],
"author": "Manuel Kießling <manuel@kiessling.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dx-tooling/httpSandwich.git"
},
"bugs": {
"url": "https://github.com/dx-tooling/httpSandwich/issues"
},
"homepage": "https://github.com/dx-tooling/httpSandwich#readme",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-yml": "^1.19.0",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15"
}
}