-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.96 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
{
"name": "shape-mcp",
"version": "0.1.0",
"description": "MCP server for Shape blockchain data - gasback analytics, NFT insights, network monitoring, etc.",
"keywords": [
"mcp",
"shape",
"blockchain",
"gasback",
"nft",
"analytics"
],
"repository": {
"type": "git",
"url": "https://github.com/shape-network/mcp-server.git"
},
"homepage": "https://github.com/shape-network/mcp-server#readme",
"bugs": {
"url": "https://github.com/shape-network/mcp-server/issues"
},
"author": "williamhzo",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "xmcp build",
"dev": "xmcp dev",
"start": "node dist/http.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"lint:check": "eslint src --ext .ts,.tsx --max-warnings 0",
"deploy:nft": "npx hardhat run scripts/deploy.ts --network shapeSepolia",
"compile": "npx hardhat compile"
},
"dependencies": {
"@rarible/protocol-mcp": "^0.0.4",
"alchemy-sdk": "^3.6.1",
"express-rate-limit": "^8.0.1",
"ioredis": "^5.6.1",
"viem": "^2.32.0",
"xmcp": "latest",
"zod": "3.24.4"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.1",
"@openzeppelin/contracts": "^5.4.0",
"@types/ioredis": "^5.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"dotenv": "^17.2.1",
"eslint": "^9.31.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ethers": "^6.15.0",
"hardhat": "^2.26.1",
"prettier": "^3.6.2",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0"
}
}