forked from degenfrends/solana-pumpfun-trader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1008 Bytes
/
package.json
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
{
"name": "@degenfrends/solana-pumpfun-trader",
"version": "0.0.16",
"description": "Functions to buy and sell SPL tokens on pump.fun",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest --config jest.config.ts --detectOpenHandles --coverage --maxWorkers=1",
"lint": "tsc",
"release": "pnpm run build && changeset publish"
},
"author": "",
"license": "ISC",
"dependencies": {
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.93.1",
"axios": "^1.7.2",
"bs58": "^5.0.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@swc/core": "^1.6.5",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
}
}