forked from hummingbot/larp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.75 KB
/
package.json
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
{
"name": "larp",
"version": "0.0.1",
"description": "larp is a CLI/API client for on-chain liquidity providers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "fengtality",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fengtality/larp.git"
},
"dependencies": {
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
"@fastify/type-provider-typebox": "^4.1.0",
"@jup-ag/api": "^6.0.29",
"@oclif/core": "^2.8.0",
"@oclif/plugin-help": "^6.2.12",
"@oclif/plugin-plugins": "^5.4.9",
"@orca-so/common-sdk": "^0.6.3",
"@orca-so/whirlpools-sdk": "0.13.8-beta.1",
"@raydium-io/raydium-sdk-v2": "^0.1.64-alpha",
"@sinclair/typebox": "^0.33.7",
"@solana/spl-token": "^0.4.8",
"@solflare-wallet/utl-sdk": "^1.4.0",
"bn.js": "^5.2.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"fastify-type-provider-zod": "^2.0.0",
"pino-pretty": "^11.2.2",
"promise-retry": "^2.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.95.3",
"@types/bn.js": "^5.1.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"bs58": "^6.0.0",
"copyfiles": "^2.4.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"oclif": "^3.8.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"scripts": {
"start": "START_SERVER=true ts-node src/index.ts",
"dev": "START_SERVER=true nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc && pnpm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.json dist/",
"serve": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"prelink": "pnpm run build",
"link": "pnpm link -g"
},
"oclif": {
"bin": "larp",
"dirname": "larp",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "hello from hummingbot"
},
"start": {
"description": "Start the larp server."
},
"balance": {
"description": "Get token balances for a Solana wallet"
}
}
},
"bin": {
"larp": "./bin/run"
}
}