@myx-trade/sdk 0.0.1

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.
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@myx-trade/sdk",
3
+ "version": "0.0.1",
4
+ "description": "MYX Trade SDK for trading operations",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup src/index.ts --format cjs,esm --dts",
20
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
+ "clean": "rm -rf dist",
22
+ "prebuild": "npm run clean",
23
+ "gen:abi": "typechain --target ethers-v6 --out-dir ./src/abi/types './src/abi/**/*.json'"
24
+ },
25
+ "keywords": [
26
+ "trading",
27
+ "sdk",
28
+ "myx",
29
+ "finance"
30
+ ],
31
+ "author": "",
32
+ "license": "ISC",
33
+ "packageManager": "pnpm@10.12.4",
34
+ "devDependencies": {
35
+ "@typechain/ethers-v6": "^0.5.1",
36
+ "@types/crypto-js": "^4.2.2",
37
+ "@types/lodash-es": "^4.17.12",
38
+ "@types/node": "^24.3.0",
39
+ "@types/react": "^18.2.0",
40
+ "@types/react-dom": "^18.2.0",
41
+ "@vitejs/plugin-react": "^4.3.0",
42
+ "tsup": "^8.0.0",
43
+ "typechain": "^8.3.2",
44
+ "typescript": "^5.3.0"
45
+ },
46
+ "dependencies": {
47
+ "@ethersproject/providers": "^5.8.0",
48
+ "@types/ws": "^8.18.1",
49
+ "crypto-js": "^4.2.0",
50
+ "ethers": "^6.15.0",
51
+ "ethers-decode-error": "^2.1.3",
52
+ "lodash-es": "^4.17.21",
53
+ "mitt": "^3.0.1",
54
+ "reconnecting-websocket": "^4.4.0",
55
+ "viem": "^2.36.0",
56
+ "wretch": "^2.11.0",
57
+ "ws": "^8.18.3"
58
+ }
59
+ }