llll-sdk 0.0.0-experimental-20260115163234
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/dist/index.d.mts +1190 -0
- package/dist/index.d.ts +1190 -0
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "llll-sdk",
|
|
3
|
+
"version": "0.0.0-experimental-20260115163234",
|
|
4
|
+
"description": "SDK fon leverage",
|
|
5
|
+
"typings": "dist/index.d.ts",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "jest",
|
|
10
|
+
"lint": "eslint src/*.ts src/**/*.ts",
|
|
11
|
+
"lint:fix": "eslint src/*.ts src/**/*.ts --fix",
|
|
12
|
+
"build": "pnpm run build:tsup",
|
|
13
|
+
"build:tsup": "npm run build:clean && npm run _build:node",
|
|
14
|
+
"build:clean": "rm -rf dist",
|
|
15
|
+
"_build:node": "tsup --format cjs,esm --dts",
|
|
16
|
+
"build:doc": "npx typedoc",
|
|
17
|
+
"publish_batch:test": "npm publish --tag experimental --access public",
|
|
18
|
+
"publish:test": "node ../../scripts/version.js leverage && npm publish --tag experimental --access public"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": ""
|
|
23
|
+
},
|
|
24
|
+
"keywords": [],
|
|
25
|
+
"author": "test",
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@cetusprotocol/common-sdk": "workspace:*",
|
|
29
|
+
"@cetusprotocol/test-utils": "workspace:*",
|
|
30
|
+
"@cetusprotocol/sui-clmm-sdk": "workspace:*",
|
|
31
|
+
"@cetusprotocol/aggregator-sdk": "1.1.2",
|
|
32
|
+
"@suilend/sdk": "1.1.75",
|
|
33
|
+
"@suilend/sui-fe": "0.3.29",
|
|
34
|
+
"@pythnetwork/pyth-sui-js": "2.2.0",
|
|
35
|
+
"@mysten/sui": "1.34.0"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"@cetusprotocol/common-sdk": "*",
|
|
39
|
+
"@cetusprotocol/sui-clmm-sdk": "*",
|
|
40
|
+
"@cetusprotocol/aggregator-sdk": "*",
|
|
41
|
+
"@mysten/sui": "*",
|
|
42
|
+
"@suilend/sdk": "1.1.75",
|
|
43
|
+
"@suilend/sui-fe": "0.3.29",
|
|
44
|
+
"@pythnetwork/pyth-sui-js": "2.2.0",
|
|
45
|
+
"@sentry/nextjs": "^10.5.0"
|
|
46
|
+
}
|
|
47
|
+
}
|