@orderly.network/hooks 2.6.1 → 2.6.2
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 +38 -9
- package/dist/index.d.ts +38 -9
- package/dist/index.js +462 -327
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +462 -329
- package/dist/index.mjs.map +1 -1
- package/package.json +23 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orderly.network/hooks",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -13,16 +13,36 @@
|
|
|
13
13
|
"react": ">=18",
|
|
14
14
|
"react-dom": ">=18"
|
|
15
15
|
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@akamfoad/qr": "^0.4.0",
|
|
18
|
+
"@amplitude/analytics-browser": "2.11.13",
|
|
19
|
+
"immer": "^10.1.1",
|
|
20
|
+
"lodash": "^4.17.21",
|
|
21
|
+
"ramda": "^0.29.0",
|
|
22
|
+
"swr": "2.2.4",
|
|
23
|
+
"use-constant": "^1.1.1",
|
|
24
|
+
"use-debounce": "^9.0.4",
|
|
25
|
+
"zustand": "^4.5.5",
|
|
26
|
+
"@orderly.network/core": "2.6.2",
|
|
27
|
+
"@orderly.network/default-evm-adapter": "2.6.2",
|
|
28
|
+
"@orderly.network/default-solana-adapter": "2.6.2",
|
|
29
|
+
"@orderly.network/net": "2.6.2",
|
|
30
|
+
"@orderly.network/perp": "4.6.2",
|
|
31
|
+
"@orderly.network/types": "2.6.2",
|
|
32
|
+
"@orderly.network/utils": "2.6.2",
|
|
33
|
+
"@orderly.network/web3-provider-ethers": "2.6.2"
|
|
34
|
+
},
|
|
16
35
|
"devDependencies": {
|
|
17
36
|
"@babel/preset-env": "^7.22.9",
|
|
18
37
|
"@babel/preset-react": "^7.22.5",
|
|
19
38
|
"@babel/preset-typescript": "^7.22.5",
|
|
39
|
+
"@jest/globals": "^30.0.2",
|
|
20
40
|
"@swc/cli": "^0.3.12",
|
|
21
41
|
"@swc/core": "^1.4.12",
|
|
22
42
|
"@swc/plugin-remove-console": "^1.5.121",
|
|
23
43
|
"@testing-library/react": "^14.2.1",
|
|
24
44
|
"@testing-library/react-hooks": "^8.0.1",
|
|
25
|
-
"@types/jest": "^29.5.
|
|
45
|
+
"@types/jest": "^29.5.14",
|
|
26
46
|
"@types/lodash": "^4.17.7",
|
|
27
47
|
"@types/ramda": "^0.29.3",
|
|
28
48
|
"@types/react": "^18.2.38",
|
|
@@ -37,26 +57,7 @@
|
|
|
37
57
|
"tsup": "^7.1.0",
|
|
38
58
|
"typedoc": "^0.27.6",
|
|
39
59
|
"typescript": "^5.1.6",
|
|
40
|
-
"tsconfig": "0.9.
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@akamfoad/qr": "^0.4.0",
|
|
44
|
-
"@amplitude/analytics-browser": "2.11.13",
|
|
45
|
-
"immer": "^10.1.1",
|
|
46
|
-
"lodash": "^4.17.21",
|
|
47
|
-
"ramda": "^0.29.0",
|
|
48
|
-
"swr": "2.2.4",
|
|
49
|
-
"use-constant": "^1.1.1",
|
|
50
|
-
"use-debounce": "^9.0.4",
|
|
51
|
-
"zustand": "^4.5.5",
|
|
52
|
-
"@orderly.network/core": "2.6.1",
|
|
53
|
-
"@orderly.network/net": "2.6.1",
|
|
54
|
-
"@orderly.network/default-evm-adapter": "2.6.1",
|
|
55
|
-
"@orderly.network/types": "2.6.1",
|
|
56
|
-
"@orderly.network/default-solana-adapter": "2.6.1",
|
|
57
|
-
"@orderly.network/perp": "4.6.1",
|
|
58
|
-
"@orderly.network/web3-provider-ethers": "2.6.1",
|
|
59
|
-
"@orderly.network/utils": "2.6.1"
|
|
60
|
+
"tsconfig": "0.9.2"
|
|
60
61
|
},
|
|
61
62
|
"publishConfig": {
|
|
62
63
|
"access": "public"
|