forked from cloudflare/mcp-server-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "@avilaroman/mcp",
"version": "0.1.7",
"description": "MCP server para interactuar con cualquier Protocolo de Modelo de Contexto compatible en este caso usando Cloudflare API",
"license": "Apache-2.0",
"author": "avilaroman (https://mcp.nicar.workers.dev)",
"homepage": "https://mcp.nicar.workers.dev",
"bugs": "https://github.com/cloudflare/mcp-server-cloudflare/issues",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"access": "public",
"bin": {
"mcp-server-cloudflare": "dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm --external xdg-app-paths --external which",
"postbuild": "shx chmod +x dist/*.js",
"check": "tsc --noEmit",
"build:watch": "pnpm build --watch"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^0.6.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"undici": "^5.28.4",
"which": "^5.0.0",
"xdg-app-paths": "^8.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@types/node": "^22.10.0",
"@types/which": "^3.0.4",
"prettier": "^3.4.1",
"shx": "^0.3.4",
"tsup": "^8.3.5",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=16.17.0"
}
}