bitget-api 3.2.2 → 3.2.3

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 +2 -1
  2. package/package.json +13 -5
package/README.md CHANGED
@@ -51,6 +51,7 @@ Updated & performant JavaScript & Node.js SDK for the Bitget V2 REST APIs and We
51
51
  - Proxy support via axios integration.
52
52
  - Active community support & collaboration in telegram: [Node.js Algo Traders](https://t.me/nodetraders).
53
53
  - QuickStart Guide: https://siebly.io/sdk/bitget/javascript
54
+ - Bitget JavaScript Tutorial: https://siebly.io/sdk/bitget/javascript/tutorial
54
55
 
55
56
  ## Table of Contents
56
57
 
@@ -161,7 +162,7 @@ Each REST API group has a dedicated REST client. To avoid confusion, here are th
161
162
  Examples for using each client can be found in:
162
163
 
163
164
  - the [examples](./examples) folder.
164
- - the [awesome-crypto-examples](https://github.com/tiagosiebler/awesome-crypto-examples) repository.
165
+ - the [awesome-crypto-examples](https://github.com/sieblyio/awesome-crypto-examples) repository.
165
166
 
166
167
  If you're missing an example, you're welcome to request one. Priority will be given to [github sponsors](https://github.com/sponsors/tiagosiebler).
167
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bitget-api",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "description": "Complete Node.js & JavaScript SDK for Bitget V1-V3 REST APIs & WebSockets, with TypeScript & end-to-end tests.",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -36,9 +36,9 @@
36
36
  "author": "Tiago Siebler (https://siebly.io)",
37
37
  "contributors": [],
38
38
  "dependencies": {
39
- "@types/ws": "^8.18.1",
40
- "axios": "^1.13.2",
41
- "isomorphic-ws": "^5.0.0",
39
+ "@types/ws": "8.18.1",
40
+ "axios": "1.18.1",
41
+ "isomorphic-ws": "5.0.0",
42
42
  "ws": "8.21.1"
43
43
  },
44
44
  "devDependencies": {
@@ -60,6 +60,14 @@
60
60
  "webpack": "^5.74.0",
61
61
  "webpack-cli": "^4.10.0"
62
62
  },
63
+ "overrides": {
64
+ "brace-expansion@<2": "1.1.18",
65
+ "brace-expansion@>=2 <3": "2.1.4",
66
+ "brace-expansion@>=5 <6": "5.0.9",
67
+ "fast-uri@>=3 <4": "3.1.5",
68
+ "js-yaml@>=3 <4": "3.15.1",
69
+ "js-yaml@>=4 <5": "4.3.1"
70
+ },
63
71
  "keywords": [
64
72
  "bitget",
65
73
  "bitget api",
@@ -94,5 +102,5 @@
94
102
  "bugs": {
95
103
  "url": "https://github.com/sieblyio/bitget-api/issues"
96
104
  },
97
- "homepage": "https://github.com/sieblyio/bitget-api#readme"
105
+ "homepage": "https://siebly.io/sdk/bitget/javascript"
98
106
  }