-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 864 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "getpumpagent",
"version": "1.3.0",
"description": "The PumpFun Trading SDK — swap execution, token data, and MCP server in one package",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"getpumpagent": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"pumpfun",
"solana",
"swap",
"trading",
"sdk"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"axios": "^1.13.6",
"boxen": "^8.0.1",
"chalk": "^5.6.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
}
}