-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "mind-agent-mcp-server",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.14.2",
"description": "An MCP server that enables LLMs to interact with the Mind Network Agent via MetaMask.",
"author": "Mind Network",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mind-network/mind-agent-mcp-server.git"
},
"keywords": [
"MCP",
"Mind Network Agent"
],
"main": "./dist/index.js",
"bin": {
"mind-agent-mcp-server": "./dist/index.js"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"inspect": "tsup && pnpm dlx fastmcp inspect ./dist/index.js",
"dev": "pnpm dlx fastmcp dev ./src/index.ts",
"build": "tsup",
"postbuild": "shx chmod 755 dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@kvs/memorystorage": "^2.1.4",
"@kvs/storage": "^2.1.4",
"@metamask/sdk": "^0.32.1",
"@wagmi/connectors": "^5.7.12",
"@wagmi/core": "^2.16.7",
"abitype": "^1.0.8",
"axios": "^1.9.0",
"dayjs": "^1.11.13",
"fastmcp": "^1.21.0",
"qrcode": "^1.5.4",
"viem": "^2.27.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.14.1",
"@types/qrcode": "^1.5.5",
"changelogen": "^0.6.1",
"eslint": "^9.24.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"shx": "^0.4.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "~5.7.2"
},
"lint-staged": {
"*.ts": "pnpm run lint"
}
}