-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 KB
/
package.json
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
{
"name": "base-mcp",
"version": "1.0.8",
"description": "A Model Context Protocol (MCP) server that provides onchain tools for Claude AI, allowing it to interact with the Base blockchain and Coinbase API",
"bin": {
"base-mcp": "./build/index.js"
},
"type": "module",
"scripts": {
"run": "tsx src/index.ts",
"dev": "tsc --watch",
"build": "tsc && chmod +x ./build/index.js",
"lint": "eslint src",
"start": "node build/index.js",
"format": "prettier --write .",
"ci:format": "prettier --check ."
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/base/base-mcp"
},
"keywords": [
"mcp",
"claude",
"base",
"blockchain",
"coinbase",
"ethereum",
"web3",
"ai"
],
"author": "Dan Schlabach, Tina He",
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"@clack/prompts": "^0.10.0",
"@coinbase/agentkit": "^0.4.0",
"@coinbase/agentkit-model-context-protocol": "^0.2.0",
"@coinbase/coinbase-sdk": "^0.21.0",
"@coinbase/onchainkit": "^0.37.6",
"@inquirer/prompts": "^7.4.0",
"@modelcontextprotocol/sdk": "^1.6.1",
"chalk": "^5.4.1",
"dotenv": "^16.4.7",
"graphql": "^16.10.0",
"graphql-request": "^7.1.2",
"reflect-metadata": "^0.2.2",
"viem": "^2.23.9",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/express": "^4",
"@types/node": "^22.13.9",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"zod-to-json-schema": "^3.24.4"
}
}