-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 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": "@fleek-platform/eliza-plugin-mcp",
"description": "ElizaOS plugin to integrate with MCP (Model Context Protocol) servers",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "0.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fleek-platform/eliza-plugin-mcp.git"
},
"tags": [
"mcp",
"model",
"context",
"protocol",
"elizaos-plugins"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --minify --treeshake",
"types": "bunx tsc --emitDeclarationOnly --outDir ./dist",
"check:write": "bunx @biomejs/biome check --write ./src",
"check": "bunx @biomejs/biome check ./src",
"ci": "bunx @biomejs/biome ci ./src",
"version:patch": "bunx bumpp patch --tag -y",
"version:minor": "bunx bumpp minor --tag -y",
"version:major": "bunx bumpp major --tag -y",
"release:patch": "bun run version:patch && git push --follow-tags",
"release:minor": "bun run version:minor && git push --follow-tags",
"release:major": "bun run version:major && git push --follow-tags"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.2.5",
"bumpp": "10.1.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@elizaos/core": "1.0.0-beta.7",
"@modelcontextprotocol/sdk": "^1.7.0",
"ajv": "^8.17.1",
"json5": "^2.2.3"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {}
}
}