-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@runware/mcp",
"version": "1.3.2",
"mcpName": "io.github.Runware/mcp",
"description": "MCP server that gives AI agents (Claude, Cursor, Codex) access to the full Runware API — image, video, audio, text, and 3D generation, upscaling, background removal, and more.",
"type": "module",
"bin": {
"runware-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"sync-version": "bun run scripts/sync-version.ts",
"clean": "rm -rf dist",
"build": "bun run clean && bun run scripts/sync-version.ts && tsc",
"start": "node dist/index.js",
"dev": "bun run src/index.ts",
"test": "bun test",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.eslint.json",
"prepublishOnly": "bun test && bun run build"
},
"keywords": [
"runware",
"mcp",
"model-context-protocol",
"ai-agent",
"claude",
"cursor",
"image-generation",
"video-generation"
],
"author": "Runware",
"homepage": "https://runware.ai",
"repository": {
"type": "git",
"url": "https://github.com/Runware/mcp.git"
},
"bugs": {
"url": "https://github.com/Runware/mcp/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@runware/sdk": "^1.6.7",
"ajv": "^8.20.0",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^10.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"typescript": "~6.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"typescript": "~6.0.3"
}
}