This repository was archived by the owner on May 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.76 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.76 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mcp-replicate",
"version": "0.1.1",
"description": "Run Replicate models through a simple MCP server interface",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"mcp-replicate": "build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"format": "biome format . --write",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"replicate": "^1.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/node": "^20.11.5",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"replicate",
"mcp",
"machine-learning",
"ai",
"model-context-protocol"
],
"author": "deepfates",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deepfates/mcp-replicate"
},
"bugs": {
"url": "https://github.com/deepfates/mcp-replicate/issues"
},
"homepage": "https://github.com/deepfates/mcp-replicate#readme",
"publishConfig": {
"access": "public"
},
"vitest": {
"include": [
"src/**/*.test.ts"
],
"exclude": [
"node_modules",
"build"
],
"environment": "node",
"testTimeout": 10000,
"coverage": {
"provider": "v8",
"reporter": [
"text",
"html"
],
"exclude": [
"node_modules",
"build",
"**/*.test.ts",
"**/*.d.ts"
]
}
}
}