-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 982 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 982 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
40
41
42
43
44
45
46
{
"name": "buu-mcp-server",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"bin": {
"buu-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\" || true",
"prepare": "npm run build",
"release": "npm run build && npm publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"dotenv": "^16.5.0",
"graphql-request": "^7.1.2",
"ts-node": "^10.9.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Buu-AI/buu-mcp-server"
}
}