okx-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
@@ -45,6 +45,7 @@ Complete, updated & performant Node.js SDK for the OKX(OKEX) APIs and WebSockets
45
45
  - See [examples/ws-api-client.ts](./examples/ws-api-client.ts) for a demonstration.
46
46
  - Browser support (via webpack bundle - see "Browser Usage" below).
47
47
  - QuickStart Guide: https://siebly.io/sdk/okx/javascript
48
+ - OKX JavaScript Tutorial: https://siebly.io/sdk/okx/javascript/tutorial
48
49
 
49
50
  ## Table of Contents
50
51
 
@@ -123,7 +124,7 @@ Support my efforts to make algo trading accessible to all - register with my ref
123
124
  - [Binance](https://www.binance.com/en/register?ref=20983262)
124
125
  - [OKX](https://www.okx.com/join/18504944)
125
126
 
126
- For more ways to give thanks & support my efforts, visit [Contributions & Thanks](https://github.com/tiagosiebler/awesome-crypto-examples/wiki/Contributions-&-Thanks)!
127
+ For more ways to give thanks & support my efforts, visit [Contributions & Thanks](https://github.com/sieblyio/awesome-crypto-examples/wiki/Contributions-&-Thanks)!
127
128
 
128
129
  ## Structure
129
130
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "okx-api",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "description": "Complete Node.js SDK for OKX's REST APIs and WebSockets, with TypeScript & end-to-end tests",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -34,9 +34,9 @@
34
34
  "author": "Tiago Siebler (https://siebly.io)",
35
35
  "contributors": [],
36
36
  "dependencies": {
37
- "@types/ws": "^8.18.1",
38
- "axios": "^1.13.2",
39
- "isomorphic-ws": "^5.0.0",
37
+ "@types/ws": "8.18.1",
38
+ "axios": "1.18.1",
39
+ "isomorphic-ws": "5.0.0",
40
40
  "ws": "8.21.1"
41
41
  },
42
42
  "devDependencies": {
@@ -58,6 +58,14 @@
58
58
  "webpack": "^5.74.0",
59
59
  "webpack-cli": "^4.10.0"
60
60
  },
61
+ "overrides": {
62
+ "brace-expansion@<2": "1.1.18",
63
+ "brace-expansion@>=2 <3": "2.1.4",
64
+ "brace-expansion@>=5 <6": "5.0.9",
65
+ "fast-uri@>=3 <4": "3.1.5",
66
+ "js-yaml@>=3 <4": "3.15.1",
67
+ "js-yaml@>=4 <5": "4.3.1"
68
+ },
61
69
  "keywords": [
62
70
  "okx",
63
71
  "okx api",
@@ -91,5 +99,5 @@
91
99
  "bugs": {
92
100
  "url": "https://github.com/sieblyio/okx-api/issues"
93
101
  },
94
- "homepage": "https://github.com/sieblyio/okx-api#readme"
102
+ "homepage": "https://siebly.io/sdk/okx/javascript"
95
103
  }