-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "@openSVM/dflow-mcp",
"version": "1.0.0",
"description": "MCP Server for Prediction Market Metadata API - Access comprehensive prediction market data through 24 specialized tools",
"type": "module",
"module": "src/index.ts",
"displayName": "DFlow MCP Server",
"homepage": "https://dflow.opensvm.com",
"icon": "https://dflow.opensvm.com/icon.svg",
"repository": {
"type": "git",
"url": "https://github.com/openSVM/dflow-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"prediction-markets",
"dflow",
"api",
"trading",
"analytics",
"solana"
],
"author": "openSVM",
"license": "MIT",
"scripts": {
"start": "bun run src/index.ts",
"dev": "npx smithery dev",
"build": "npx smithery build",
"test": "bun test",
"serve": "bun run web-server.ts",
"deploy": "netlify deploy --prod --dir=."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"netlify-cli": "^23.12.2",
"toml": "^3.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@smithery/cli": "^1.4.6",
"@types/node": "^20.0.0",
"bun-types": "latest",
"playwright": "^1.57.0",
"typescript": "^5.0.0"
}
}