-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "@tamago-labs/kilolend-mcp",
"version": "0.1.1",
"description": "MCP libraries for KiloLend AI agents",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"kilolend-mcp": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"KAIA",
"KUB",
"Etherlink",
"DeFi",
"lending",
"borrowing",
"DEX",
"swap",
"blockchain",
"AI agent",
"AI-assisted",
"MCP",
"model context protocol",
"blockchain automation",
"smart contracts",
"protocol integration",
"decentralized finance",
"liquidity",
"yield farming"
],
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"test": "jest",
"dev": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tamago-labs/kilolend-mcp.git"
},
"author": "Pisuth",
"license": "MIT",
"bugs": {
"url": "https://github.com/tamago-labs/kilolend-mcp/issues"
},
"homepage": "https://kilolend.xyz",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.10.0",
"dotenv": "^17.2.3",
"viem": "^2.8.12",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.2",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}