forked from AphelionTrading/openbook-cranker-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 977 Bytes
/
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
{
"name": "obv2-crank-script",
"version": "1.0.0",
"description": "Standalone script for Openbook v2 Crank",
"main": "dist/crank.js",
"scripts": {
"build": "tsc",
"start": "node dist/crank.js",
"dev": "ts-node src/crank.ts",
"lint": "eslint src --ext .ts"
},
"author": "Openbook Contributors",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@openbook-dex/openbook-v2": "^0.2.10",
"@solana/web3.js": "^1.77.3",
"bn.js": "^5.2.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/node": "^20.2.5",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.17.0"
}
}