-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "proxy-mcp",
"version": "2.3.0",
"description": "MCP server for HTTP/HTTPS MITM proxy via mockttp",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"bin": {
"proxy-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp -r src/frida-scripts/vendor dist/frida-scripts/",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "node --import tsx/esm --test 'test/unit/**/*.test.ts' 'test/integration/**/*.test.ts'",
"test:unit": "node --import tsx/esm --test 'test/unit/**/*.test.ts'",
"test:integration": "node --import tsx/esm --test 'test/integration/**/*.test.ts'",
"test:e2e": "node --import tsx/esm --test 'test/e2e/**/*.test.ts'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"cloakbrowser": "^0.3.24",
"dockerode": "^4.0.4",
"frida-js": "^0.4.0",
"impit": "^0.13.0",
"mockttp": "^3.17.0",
"playwright-core": "^1.59.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/dockerode": "^3.3.34",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}