-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@mcp-dockmaster/mcp-cryptowallet-evm",
"version": "1.0.6",
"description": "MCP server for EVM crypto wallet operations using ethers.js v5",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-cryptowallet-evm": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"test": "node --test ./tests/**/*.test.ts",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcSpark/mcp-cryptowallet-evm.git"
},
"keywords": [
"mcp",
"ethereum",
"evm",
"wallet",
"ethers"
],
"author": "dcSpark",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcSpark/mcp-cryptowallet-evm/issues"
},
"homepage": "https://github.com/dcSpark/mcp-cryptowallet-evm#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"@scure/bip39": "^1.5.4",
"ethers": "^5.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}