-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
51
52
53
54
55
56
57
{
"name": "@ryzome-ai/ryzome-mcp",
"version": "0.2.4",
"description": "Ryzome MCP server — expose Ryzome canvas tools to Claude Code and other MCP clients",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.31.0",
"repository": {
"type": "git",
"url": "git+https://github.com/0xPlaygrounds/ryzome-mcp-plugins.git",
"directory": "packages/ryzome-mcp"
},
"homepage": "https://github.com/0xPlaygrounds/ryzome-mcp-plugins/tree/main/packages/ryzome-mcp",
"bugs": {
"url": "https://github.com/0xPlaygrounds/ryzome-mcp-plugins/issues"
},
"keywords": [
"mcp",
"ryzome",
"canvas",
"agent",
"claude"
],
"bin": {
"ryzome-mcp": "./dist/index.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"lint": "biome lint . && tsc --noEmit",
"lint:check": "biome lint --diagnostic-level=error .",
"format": "biome format --write .",
"format:check": "biome format ."
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/node": "^25.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"@ryzome-ai/ryzome-core": "workspace:*",
"zod": "^4.3.6"
}
}