binance 3.6.3 → 3.6.4

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +14 -6
package/README.md CHANGED
@@ -602,7 +602,7 @@ const wsClient = new WebsocketAPIClient({
602
602
  });
603
603
 
604
604
  // Optional, if you see RECV Window errors, you can use this to manage time issues. However, make sure you sync your system clock first!
605
- // https://github.com/tiagosiebler/awesome-crypto-examples/wiki/Timestamp-for-this-request-is-outside-of-the-recvWindow
605
+ // https://github.com/sieblyio/awesome-crypto-examples/wiki/Timestamp-for-this-request-is-outside-of-the-recvWindow
606
606
  // wsClient.setTimeOffsetMs(-5000);
607
607
 
608
608
  // Optional, see above. Can be used to prepare a connection before sending commands
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binance",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "description": "Professional Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -40,10 +40,10 @@
40
40
  "0xSmartCrypto <0xsmartcrypto@gmail.com> (https://twitter.com/0xSmartCrypto)"
41
41
  ],
42
42
  "dependencies": {
43
- "@types/ws": "^8.18.1",
44
- "axios": "^1.13.2",
45
- "isomorphic-ws": "^4.0.1",
46
- "nanoid": "^3.3.11",
43
+ "@types/ws": "8.18.1",
44
+ "axios": "1.18.1",
45
+ "isomorphic-ws": "4.0.1",
46
+ "nanoid": "3.3.18",
47
47
  "ws": "8.21.1"
48
48
  },
49
49
  "devDependencies": {
@@ -66,6 +66,14 @@
66
66
  "webpack": "^5.102.1",
67
67
  "webpack-cli": "^5.1.4"
68
68
  },
69
+ "overrides": {
70
+ "brace-expansion@<2": "1.1.18",
71
+ "brace-expansion@>=2 <3": "2.1.4",
72
+ "brace-expansion@>=5 <6": "5.0.9",
73
+ "fast-uri@>=3 <4": "3.1.5",
74
+ "js-yaml@>=3 <4": "3.15.1",
75
+ "js-yaml@>=4 <5": "4.3.1"
76
+ },
69
77
  "keywords": [
70
78
  "binance",
71
79
  "binance api",
@@ -99,5 +107,5 @@
99
107
  "bugs": {
100
108
  "url": "https://github.com/sieblyio/binance/issues"
101
109
  },
102
- "homepage": "https://github.com/sieblyio/binance#readme"
110
+ "homepage": "https://siebly.io/sdk/binance/javascript"
103
111
  }