@xswap-link/sdk 0.6.5 → 0.6.7

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.js CHANGED
@@ -102,4 +102,3 @@ js-sha3/src/sha3.js:
102
102
  * @license MIT
103
103
  *)
104
104
  */
105
- //# sourceMappingURL=index.js.map
package/dist/index.mjs CHANGED
@@ -102,4 +102,3 @@ js-sha3/src/sha3.js:
102
102
  * @license MIT
103
103
  *)
104
104
  */
105
- //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xswap-link/sdk",
3
- "version": "0.6.5",
3
+ "version": "0.6.7",
4
4
  "description": "JavaScript SDK for XSwap platform",
5
5
  "homepage": "https://github.com/xswap-link/xswap-sdk",
6
6
  "repository": {
@@ -36,20 +36,20 @@
36
36
  "@fortawesome/react-fontawesome": "^0.2.0",
37
37
  "@r2wc/core": "^1.1.0",
38
38
  "@tanstack/react-query": "^5.35.5",
39
- "@types/react": "18.2.0",
40
- "@types/react-dom": "18.2.0",
41
39
  "async-retry": "^1.3.3",
42
40
  "bignumber.js": "4.0.4",
43
41
  "date-fns": "^3.6.0",
44
42
  "ethers": "5.7.2",
45
43
  "notistack": "^3.0.1",
46
- "react": "18.2.0",
47
- "react-dom": "18.2.0",
48
44
  "react-virtuoso": "^4.7.12",
49
45
  "viem": "2.x",
50
46
  "wagmi": "^2.8.5"
51
47
  },
52
48
  "devDependencies": {
49
+ "react": "^18.2.0",
50
+ "react-dom": "^18.2.0",
51
+ "@types/react": "^18.2.0",
52
+ "@types/react-dom": "^18.2.0",
53
53
  "@changesets/cli": "^2.27.1",
54
54
  "@types/async-retry": "^1.4.8",
55
55
  "@types/jest": "^29.5.12",
package/tsup.config.ts CHANGED
@@ -10,7 +10,7 @@ export default defineConfig(() => {
10
10
  clean: true,
11
11
  minify: true,
12
12
  splitting: false,
13
- sourcemap: true,
13
+ sourcemap: false,
14
14
  noExternal: ["ethers"],
15
15
  outDir: "dist",
16
16
  esbuildOptions(options) {
@@ -37,7 +37,7 @@ export default defineConfig(() => {
37
37
  globalName: "XPay",
38
38
  minify: true,
39
39
  splitting: false,
40
- sourcemap: true,
40
+ sourcemap: false,
41
41
  target: "chrome110.0",
42
42
  outDir: "dist",
43
43
  platform: "browser",