-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.71 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.71 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
{
"name": "brew-mev",
"version": "1.0.0",
"description": "Solana MEV with cli and ui",
"main": "cli.js",
"bin": {
"solana-mev": "./cli.js"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cli": "node cli.js",
"ts-cli": "ts-node cli/src/cli.ts",
"build-cli": "tsc -p cli/tsconfig.json",
"start-ts-cli": "npm run build-cli && node cli/dist/src/cli.js",
"start-bot": "ts-node cli/src/cli.ts",
"install-global": "npm install -g .",
"run-all": "node run-all.js",
"type-check": "tsc --noEmit",
"type-check:cli": "tsc -p cli/tsconfig.json --noEmit",
"migrate-js": "node scripts/migrate-to-ts.js",
"migration-status": "node scripts/migration-status.js",
"setup-typescript": "node scripts/setup-typescript.js",
"start-all": "node scripts/run-all.js"
},
"keywords": [
"solana",
"mev",
"bot",
"defi",
"trading",
"crypto"
],
"author": "",
"license": "MIT",
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@solana/spl-token": "^0.4.13",
"@solana/wallet-adapter-base": "^0.9.24",
"@solana/web3.js": "^1.87.6",
"@types/crypto-js": "^4.2.2",
"@types/open": "^6.2.1",
"axios": "^1.6.8",
"chalk": "^4.1.2",
"class-variance-authority": "^0.7.1",
"cli-table3": "^0.6.3",
"clsx": "^2.1.0",
"crypto-js": "^4.2.0",
"figlet": "^1.7.0",
"inquirer": "^8.2.6",
"lucide-react": "^0.358.0",
"next": "14.1.3",
"next-themes": "^0.3.0",
"open": "^10.1.0",
"ora": "^5.4.1",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rpc-websockets": "^7.5.1",
"superstruct": "^2.0.2",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/bip39": "^3.0.4",
"@types/bs58": "^4.0.4",
"@types/chalk": "^2.2.4",
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.25",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"autoprefixer": "^10.4.18",
"bip39": "^3.1.0",
"bs58": "^4.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}