-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "solana-pumpfun-sniper-bot",
"version": "1.0.0",
"description": "Automated sniper bot for Pump.fun token launches on Solana",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": ["solana", "pump.fun", "sniper", "bot", "trading"],
"author": "",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.91.6",
"@solana/spl-token": "^0.4.8",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"axios": "^1.7.7",
"redis": "^4.7.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@types/bs58": "^4.0.4",
"@types/jest": "^29.5.13",
"typescript": "^5.6.2",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"eslint": "^9.13.0",
"@typescript-eslint/parser": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"prettier": "^3.3.3"
}
}