-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@cetusprotocol/aggregator-sdk",
"version": "1.4.4",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"build": "tsup --format cjs,esm --dts",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:gas": "vitest run tests/benchmarks/gas-benchmark.ts",
"benchmark": "bun tests/benchmarks/run-benchmark.ts",
"benchmark:quick": "bun tests/benchmarks/run-benchmark.ts --max-tests 10",
"benchmark:cetus": "bun tests/benchmarks/run-benchmark.ts --providers CETUS",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"publish:test": "node version.mjs && npm publish --tag experimental"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@mysten/sui": "^1.0.5",
"@pythnetwork/pyth-sui-js": "^2.1.0",
"bip39": "^3.1.0",
"dotenv": "^16.4.5",
"json-bigint": "^1.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/bun": "latest",
"@types/json-bigint": "^1.0.4",
"@types/node": "^20.12.12",
"bn.js": "^5.2.1",
"decimal.js": "^10.4.3",
"tsup": "^8.0.2",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"overrides": {
"chalk": "5.3.0",
"strip-ansi": "7.1.0",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "5.0.1"
}
}