@myx-trade/sdk 0.1.245-beta.9 → 0.1.246
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/dist/index.d.mts +192 -446
- package/dist/index.d.ts +192 -446
- package/dist/index.js +676 -2775
- package/dist/index.mjs +676 -2765
- package/package.json +21 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myx-trade/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.246",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -19,6 +19,24 @@
|
|
|
19
19
|
"files": [
|
|
20
20
|
"dist"
|
|
21
21
|
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
24
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
25
|
+
"clean": "rm -rf dist",
|
|
26
|
+
"prebuild": "npm run clean",
|
|
27
|
+
"gen:abi": "typechain --target ethers-v6 --out-dir ./src/abi/types './src/abi/**/*.json'",
|
|
28
|
+
"version:bump": "node scripts/bump-version.js",
|
|
29
|
+
"version:patch": "node scripts/bump-version.js patch",
|
|
30
|
+
"version:minor": "node scripts/bump-version.js minor",
|
|
31
|
+
"version:major": "node scripts/bump-version.js major",
|
|
32
|
+
"prepublishOnly": "npm run build",
|
|
33
|
+
"publish": "node scripts/publish.js patch",
|
|
34
|
+
"publish:patch": "node scripts/publish.js patch",
|
|
35
|
+
"publish:minor": "node scripts/publish.js minor",
|
|
36
|
+
"publish:major": "node scripts/publish.js major",
|
|
37
|
+
"publish:no-bump": "npm run build && npm publish --access public",
|
|
38
|
+
"type-check": "echo 'Skipping type-check for @myx-trade/sdk'"
|
|
39
|
+
},
|
|
22
40
|
"keywords": [
|
|
23
41
|
"trading",
|
|
24
42
|
"sdk",
|
|
@@ -27,6 +45,7 @@
|
|
|
27
45
|
],
|
|
28
46
|
"author": "",
|
|
29
47
|
"license": "ISC",
|
|
48
|
+
"packageManager": "pnpm@10.12.4",
|
|
30
49
|
"devDependencies": {
|
|
31
50
|
"@typechain/ethers-v6": "^0.5.1",
|
|
32
51
|
"@types/crypto-js": "^4.2.2",
|
|
@@ -53,21 +72,5 @@
|
|
|
53
72
|
"wretch": "^2.11.0",
|
|
54
73
|
"ws": "^8.18.3",
|
|
55
74
|
"dayjs": "^1.11.13"
|
|
56
|
-
},
|
|
57
|
-
"scripts": {
|
|
58
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
59
|
-
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
60
|
-
"clean": "rm -rf dist",
|
|
61
|
-
"prebuild": "npm run clean",
|
|
62
|
-
"gen:abi": "typechain --target ethers-v6 --out-dir ./src/abi/types './src/abi/**/*.json'",
|
|
63
|
-
"version:bump": "node scripts/bump-version.js",
|
|
64
|
-
"version:patch": "node scripts/bump-version.js patch",
|
|
65
|
-
"version:minor": "node scripts/bump-version.js minor",
|
|
66
|
-
"version:major": "node scripts/bump-version.js major",
|
|
67
|
-
"publish:patch": "node scripts/publish.js patch",
|
|
68
|
-
"publish:minor": "node scripts/publish.js minor",
|
|
69
|
-
"publish:major": "node scripts/publish.js major",
|
|
70
|
-
"publish:no-bump": "npm run build && npm publish --access public",
|
|
71
|
-
"type-check": "echo 'Skipping type-check for @myx-trade/sdk'"
|
|
72
75
|
}
|
|
73
|
-
}
|
|
76
|
+
}
|