-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 932 Bytes
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
{
"name": "openbullet2-mcp",
"version": "1.0.0",
"description": "MCP server for OpenBullet 2 - automate web scraping, penetration testing, and data analysis through AI IDEs",
"main": "dist/index.js",
"type": "module",
"bin": {
"openbullet2-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && node -e \"import('node:fs').then(fs => fs.chmodSync('dist/index.js', '755'))\"",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"openbullet",
"openbullet2",
"mcp",
"model-context-protocol",
"automation",
"scraping",
"pentesting"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}