-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 744 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 744 Bytes
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
{
"name": "cuendillar",
"version": "1.0.0",
"description": "An Mcp server used to interact with meteora's dynamic liquid market maker",
"main": "/dist/index.js",
"type": "module",
"bin": "./dist/index.js",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@meteora-ag/dlmm": "^1.5.2",
"@meteora-ag/dynamic-amm-sdk": "^1.3.5",
"@modelcontextprotocol/sdk": "^1.11.2",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2"
},
"devDependencies": {
"typescript": "^5.8.3"
}
}