@clairejs/server 3.16.18 → 3.16.19

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 +5 -5
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  ## Change Log
2
2
 
3
- #### 3.16.18:
3
+ #### 3.16.19:
4
4
 
5
+ - fix dependency
5
6
  - allow file service to resolve empty uri to empty string
6
7
  - fix job param type from any[] to any
7
8
  - fix CRUD order
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clairejs/server",
3
- "version": "3.16.18",
3
+ "version": "3.16.19",
4
4
  "description": "Claire server NodeJs framework written in Typescript.",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
@@ -28,12 +28,13 @@
28
28
  "randomstring": "^1.2.2",
29
29
  "redlock": "^5.0.0-beta.2",
30
30
  "reflect-metadata": "^0.1.13",
31
- "ws": "^7.5.5"
31
+ "ws": "^7.5.5",
32
+ "ioredis": "^5.2.0",
33
+ "axios": "^0.21.4"
32
34
  },
33
35
  "peerDependencies": {
34
36
  "@clairejs/core": "^3.6.1",
35
- "@clairejs/orm": "^3.11.0",
36
- "ioredis": "^5.2.0"
37
+ "@clairejs/orm": "^3.11.0"
37
38
  },
38
39
  "devDependencies": {
39
40
  "@types/cookie-parser": "^1.4.3",
@@ -47,7 +48,6 @@
47
48
  "@types/randomstring": "^1.1.8",
48
49
  "@types/uuid": "^9.0.0",
49
50
  "@types/ws": "^7.4.0",
50
- "axios": "^0.21.1",
51
51
  "mocha": "^10.2.0",
52
52
  "ts-node": "^10.9.1",
53
53
  "typescript": "^5.0.4",