-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.59 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.59 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "outsmart",
"version": "2.0.0-alpha.16",
"description": "The most complete Solana DEX toolkit for autonomous agents, bots, and builders — 18 adapters, event streaming, LP manager, perp engine.",
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"outsmart": "./dist/cli.js"
},
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && npm run build:ts && npm run build:chmod",
"build:ts": "tsc -p tsconfig.build.json",
"build:chmod": "chmod +x dist/cli.js || true",
"clean": "rm -rf dist/",
"dev": "ts-node src/cli.ts",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:registry": "jest --testPathPattern=registry",
"test:raydium": "jest --testPathPattern=raydium",
"test:meteora": "jest --testPathPattern=meteora",
"test:pumpfun": "jest --testPathPattern=pumpfun",
"test:orca": "jest --testPathPattern=orca",
"test:clmm": "jest --testPathPattern=clmm",
"test:fusion": "jest --testPathPattern=fusion-futarchy",
"test:api": "jest --testPathPattern=api-adapters",
"test:unit": "jest --testPathPattern=unit",
"test:percolator": "jest --testPathPattern=percolator",
"keeper": "npx tsx scripts/keeper.ts",
"keeper:ws": "npx tsx scripts/ws-keeper.ts",
"keeper:grpc": "npx tsx scripts/grpc-keeper.ts"
},
"keywords": [
"solana",
"trading",
"cli",
"dex",
"raydium",
"meteora",
"orca",
"jupiter",
"pancakeswap",
"sniper",
"swap",
"outsmart"
],
"author": "vincentso",
"url": "https://github.com/outsmartchad/solana-trading-cli/issues",
"homepage": "https://github.com/outsmartchad/solana-trading-cli",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@crypticdot/fusionamm-client": "^1.0.81",
"@crypticdot/fusionamm-core": "^1.0.81",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@meteora-ag/cp-amm-sdk": "^1.3.4",
"@meteora-ag/dlmm": "^1.0.54",
"@meteora-ag/dynamic-amm-sdk": "^1.4.1",
"@meteora-ag/dynamic-bonding-curve-sdk": "^1.5.3",
"@orca-so/whirlpools": "^7.0.1",
"@raydium-io/raydium-sdk": "^1.3.1-beta.47",
"@raydium-io/raydium-sdk-v2": "^0.1.23-alpha",
"@shyft-to/solana-transaction-parser": "^1.1.17",
"@solana-program/memo": "^0.11.0",
"@solana-program/token": "^0.11.0",
"@solana-program/token-2022": "^0.9.0",
"@solana/kit": "^6.1.0",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.95.0",
"@triton-one/yellowstone-grpc": "^0.4.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.9",
"bigint-buffer": "^1.1.5",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"commander": "^12.1.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"jito-ts": "^4.2.1",
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
"pumpdotfun-sdk": "^1.3.2",
"rpc-websockets": "7.10.0"
},
"overrides": {
"@solana/web3.js": "^1.95.0",
"axios": "^1.7.9",
"bigint-buffer": "^1.1.5",
"qs": "^6.13.0",
"brace-expansion": "^2.0.1"
},
"resolutions": {
"@solana/web3.js": "^1.95.0",
"axios": "^1.7.9",
"bigint-buffer": "^1.1.5",
"qs": "^6.13.0",
"brace-expansion": "^2.0.1"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}