-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "@iqai/mcp-polymarket",
"version": "0.0.16",
"description": "Polymarket MCP Server - Model Context Protocol server for Polymarket trading",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-polymarket": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"watch": "tsc --watch",
"start": "node dist/index.js",
"publish-packages": "pnpm run build && changeset publish",
"format": "biome format . --write",
"lint": "biome check ."
},
"keywords": [
"mcp",
"polymarket",
"trading",
"api",
"model-context-protocol"
],
"author": "IQAI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IQAIcom/mcp-polymarket.git"
},
"dependencies": {
"@jsr/hk__polymarket": "^0.2.1",
"@modelcontextprotocol/sdk": "^1.20.2",
"@polymarket/clob-client": "^4.22.8",
"ethers": "^5.8.0",
"fastmcp": "^3.22.0",
"shx": "^0.3.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.3.1",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.9.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"zod-to-json-schema": "^3.25.1"
}
}