-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.76 KB
/
package.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@la-rebelion/mcp-server",
"version": "0.2.1",
"description": "A Model Context Protocol Server facade to simplify the implementation of agents",
"type": "module",
"author": {
"name": "La Rebelion Labs",
"url": "https://rebelion.la"
},
"contributors": [
{
"name": "Adrian Escutia",
"url": "https://escutia.me/adrian"
}
],
"homepage": "https://rebelion.la",
"repository": {
"type": "git",
"url": "https://github.com/la-rebelion/mcp-server"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"server",
"agentic",
"facade",
"ai"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"bin": {
"server": "./build/index.js"
},
"main": "./build/index.js",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./build/*"
]
}
},
"scripts": {
"build": "tsc",
"postbuild": "node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node --disable-warning=ExperimentalWarning build/index.js",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"publish:npm": "npm run build && npm publish --access public"
},
"files": [
"build",
"README.md",
"package.json",
"mcp-server.png",
"LICENSE"
],
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}