-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.43 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.43 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
70
71
{
"name": "@stakewise/llm-tools",
"version": "1.0.3",
"description": "Ethereum staking tools with StakeWise protocol",
"homepage": "https://github.com/stakewise/llm-tools",
"repository": {
"type": "git",
"url": "git+https://github.com/stakewise/llm-tools.git"
},
"type": "module",
"main": "index.ts",
"bin": {
"stakewise-llm-tools": "./mcp.ts"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"debug:server": "npx tsx debug-server.ts"
},
"keywords": [
"mcp",
"claude",
"cursor",
"codex",
"openclaw",
"openclaw-plugin",
"stakewise",
"staking",
"ethereum",
"defi"
],
"openclaw": {
"compat": {
"pluginApi": ">=2026.4.2"
},
"build": {
"openclawVersion": "2026.4.6"
},
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"openclaw": "*"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "25.0.0",
"eslint": "9.28.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-import-x": "4.16.2",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1",
"vitest": "3.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@stakewise/v3-sdk": "4.2.4",
"dayjs": "1.11.13",
"ethers": "6.16.0",
"zod": "4.3.6"
}
}