-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "mcp-thru-burp",
"version": "1.0.0",
"description": "MCP Client with Burp Suite Integration for Security Testing",
"main": "main.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"keywords": ["mcp", "proxy", "burp", "security"],
"author": "",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"axios": "^1.12.2",
"electron": "^38.2.0",
"electron-builder": "^26.0.12",
"https-proxy-agent": "^7.0.6"
},
"build": {
"appId": "com.mcpthruburp.app",
"productName": "MCP Thru Burp",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"renderer.js",
"index.html"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": ["dmg", "zip"]
},
"win": {
"target": ["nsis", "portable"]
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Development"
}
}
}