-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "tradingbot",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "node dist/main.js",
"start": "ts-node src/main.ts",
"send": "ts-node src/send.ts",
"sell": "ts-node src/sell.ts",
"build": "tsc",
"gather": "ts-node src/gather.ts",
"wallet": "ts-node src/wallets.ts",
"scan": "ts-node src/scan.ts",
"buy": "ts-node src/buy.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"solana",
"trading",
"bot"
],
"author": "jsphantom",
"license": "ISC",
"dependencies": {
"@ixjb94/indicators": "^1.2.2",
"@project-serum/anchor": "^0.26.0",
"@raydium-io/raydium-sdk": "^1.3.1-beta.58",
"@raydium-io/raydium-sdk-v2": "0.1.35-alpha",
"@solana/spl-token": "^0.4.6",
"@solana/spl-token-registry": "^0.2.7",
"@solana/web3.js": "^1.89.1",
"@types/jsonfile": "^6.1.4",
"@types/node": "^14.11.2",
"bigint-buffer": "^1.1.5",
"bip39": "^3.1.0",
"bluebird": "^3.7.2",
"bs58": "^5.0.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"ed25519-hd-key": "^1.3.0",
"jsonfile": "^6.1.0",
"node-cron": "^3.0.3",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/bn.js": "^5.1.5",
"npm-check-updates": "^16.14.11"
}
}