-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.63 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
72
73
74
75
{
"name": "@persistenceone/bridgekitty",
"version": "0.3.0",
"description": "BridgeKitty 🐱 — Cross-chain bridge aggregator MCP server for AI agents. One tool, all bridges, best routes.",
"type": "module",
"main": "dist/index.js",
"bin": {
"bridgekitty": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"bridge",
"cross-chain",
"defi",
"ai-agent",
"lifi",
"debridge",
"across",
"relay",
"squid",
"cosmos",
"solana-bridge",
"persistence",
"xprt",
"evm",
"ethereum",
"arbitrum",
"optimism",
"base"
],
"repository": {
"type": "git",
"url": "https://github.com/persistenceOne/bridgekitty"
},
"dependencies": {
"@cosmjs/amino": "^0.38.1",
"@cosmjs/crypto": "^0.38.1",
"@cosmjs/proto-signing": "^0.38.1",
"@cosmjs/stargate": "^0.38.1",
"@modelcontextprotocol/sdk": "^1.12.1",
"@scure/bip39": "^2.0.1",
"@solana/web3.js": "^1.98.0",
"bs58": "^6.0.0",
"ed25519-hd-key": "^1.3.0",
"ethers": "^6.16.0",
"ws": "^8.19.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"mcpName": "io.github.persistenceOne/bridgekitty"
}