forked from blockworks-foundation/mango-client-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.72 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
{
"name": "@blockworks-foundation/mango-client",
"version": "3.0.12",
"description": "Client to interact with the Mango program on Solana",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"repository": "https://github.com/blockworks-foundation/mango-client-v3",
"author": {
"name": "Blockworks Foundation",
"email": "[email protected]",
"url": "https://blockworks.foundation"
},
"engines": {
"node": ">=14.15.3"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"cli": "ts-node src/cli.ts",
"liquidator": "ts-node src/liquidator.ts",
"launch-group": "ts-node test/initDevnetGroup.ts",
"launch-realistic-group": "ts-node test/initRealisticDevnetGroup.ts",
"clean": "rm -rf lib",
"prepare": "yarn clean && yarn build",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --check .",
"lint": "eslint . --ext ts --ext tsx --ext js --quiet",
"shell": "node -e \"$(< shell)\" -i --experimental-repl-await",
"keeper": "ts-node src/keeper.ts",
"crank": "ts-node src/crank.ts",
"scratch": "ts-node src/scratch.ts",
"test-compute": "ts-node test/compute.test.ts",
"test-liquidator": "ts-node test/liquidator.test.ts",
"test-accounts": "ts-node test/accounts.test.ts",
"mint-devnet": "ts-node src/mintDevnet.ts",
"test": "mocha -r ts-node/register test/**/*.test.ts --timeout 0",
"test:build": "yarn build && yarn",
"test:lint": "eslint src",
"heroku-postbuild": "npm run build"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/big.js": "^6.1.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.9",
"@types/mocha": "^8.2.0",
"@types/node": "^15.12.4",
"@types/yargs": "latest",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.4",
"cross-env": "^7.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^7.2.0",
"mocha": "^8.4.0",
"prettier": "^2.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"files": [
"lib"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@project-serum/serum": "0.13.55",
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@solana/spl-token": "^0.1.6",
"@solana/web3.js": "1.21.0",
"big.js": "^6.1.1",
"bigint-buffer": "^1.1.5",
"bn.js": "^5.1.0",
"borsh": "https://github.com/defactojob/borsh-js#field-mapper",
"buffer-layout": "^1.2.1",
"yargs": "^17.0.1"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"maintained node versions"
],
"resolutions": {
"bn.js": "5.1.3",
"@types/bn.js": "5.1.0"
}
}