-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (40 loc) · 1.08 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
{
"name": "example-buy-wall-bot",
"version": "1.0.0",
"description": "Arbitrage bot for buying tokens on Jupiter and selling into MetaDAO bid walls",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"dry-run": "DRY_RUN=true bun run src/index.ts",
"build": "bun build src/index.ts --outdir=dist --target=bun",
"typecheck": "tsc --noEmit",
"server": "bun run src/server.ts",
"frontend": "cd frontend && bun run dev",
"frontend:install": "cd frontend && bun install",
"dev:all": "bun run server & cd frontend && bun run dev"
},
"keywords": [
"solana",
"metadao",
"futarchy",
"arbitrage",
"bid-wall",
"jupiter"
],
"author": "",
"license": "MIT",
"dependencies": {
"@metadaoproject/futarchy": "^0.7.0-alpha.12",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.98.0",
"bn.js": "^5.2.1",
"bs58": "^6.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
}
}