-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.49 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
{
"name": "@avernikoz/rinbot-sui-sdk",
"version": "2.8.5",
"description": "Sui Trading Bot SDK (typescript)",
"files": [
"dist"
],
"node": "v20",
"engines": {
"npm": "please-use-yarn",
"node": "20"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aldrin-labs/rinbot-sui-sdk.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "avernikoz <[email protected]>",
"license": "private",
"private": false,
"engineStrict": true,
"scripts": {
"test": "jest --forceExit",
"audit": "yarn audit --groups dependencies",
"format": "prettier --write src/**/*.ts",
"lint": "tsc --noEmit && eslint src/**/*.ts",
"build": "yarn rimraf dist && yarn run lint && tsup",
"build:watch": "tsc --watch",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"deploy": "yarn lint && yarn build && yarn publish --access restricted",
"generate": "mkdir -p __generated__ && sui-client-gen --manifest generate.toml --out __generated__/ --clean && eslint __generated__/ --fix && prettier --write __generated__/**/*.ts"
},
"overrides": {
"@cetusprotocol/cetus-sui-clmm-sdk": {
"@mysten/sui.js": "0.42.0"
},
"@flowx-pkg/ts-sdk": {
"@mysten/sui.js": "0.41.2"
},
"ip": "2.0.1",
"@interest-protocol/clamm-sdk": {
"@mysten/sui.js": "0.51.2"
},
"aftermath-ts-sdk": {
"@mysten/sui.js": "0.42.0"
}
},
"dependencies": {
"@cetusprotocol/cetus-sui-clmm-sdk": "^3.17.8",
"@flowx-pkg/ts-sdk": "^0.0.11",
"@interest-protocol/clamm-sdk": "6.1.1-alpha",
"@mysten/sui.js": "0.42.0",
"@mysten/sui.js-0.51.2": "npm:@mysten/sui.js@^0.51.2",
"@types/redis": "^4.0.11",
"aftermath-ts-sdk": "^1.1.32",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.2",
"decimal.js": "^10.4.3",
"turbos-clmm-sdk": "^2.1.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"dotenv": "^16.3.1",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"redis": "^4.6.12",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.2.0"
}
}