@liveblocks/redux 0.18.3-test2 → 0.18.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.
@@ -0,0 +1 @@
1
+ db5ed9af49cb3b74907a11800c64d721bda1fd95
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/redux",
3
- "version": "0.18.3-test2",
3
+ "version": "0.18.4",
4
4
  "description": "A store enhancer to integrate Liveblocks into Redux stores.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -18,12 +18,11 @@
18
18
  "collaborative"
19
19
  ],
20
20
  "scripts": {
21
- "dev": "tsup --watch --onSuccess ../../scripts/build.sh",
22
21
  "build": "tsup && ../../scripts/build.sh",
23
22
  "format": "eslint --fix src/ && prettier --write src/",
24
23
  "lint": "eslint src/",
25
- "test": "jest --silent --verbose",
26
- "test:watch": "jest --silent --verbose --watch",
24
+ "test": "jest --watch --silent --verbose",
25
+ "test-ci": "jest --silent --verbose",
27
26
  "dtslint": "dtslint --localTs node_modules/typescript/lib --expectOnly types"
28
27
  },
29
28
  "license": "Apache-2.0",
@@ -33,20 +32,31 @@
33
32
  "directory": "packages/liveblocks-redux"
34
33
  },
35
34
  "dependencies": {
36
- "@liveblocks/client": "0.18.3-test2",
37
- "@liveblocks/core": "0.18.3-test2"
35
+ "@liveblocks/core": "0.18.4",
36
+ "@liveblocks/client": "0.18.4"
38
37
  },
39
38
  "peerDependencies": {
40
39
  "redux": "^4"
41
40
  },
42
41
  "devDependencies": {
43
42
  "@definitelytyped/dtslint": "^0.0.103",
44
- "@liveblocks/eslint-config": "*",
45
- "@liveblocks/jest-config": "*",
46
43
  "@reduxjs/toolkit": "^1.7.2",
47
44
  "@testing-library/jest-dom": "^5.16.5",
45
+ "@types/jest": "^29.1.2",
46
+ "@typescript-eslint/eslint-plugin": "^5.26.0",
47
+ "@typescript-eslint/parser": "^5.26.0",
48
+ "eslint": "^8.12.0",
49
+ "eslint-plugin-import": "^2.26.0",
50
+ "eslint-plugin-simple-import-sort": "^7.0.0",
51
+ "jest": "^29.1.2",
52
+ "jest-environment-jsdom": "^29.1.2",
48
53
  "msw": "^0.36.4",
49
- "redux": "^4.1.2"
54
+ "prettier": "^2.7.1",
55
+ "redux": "^4.1.2",
56
+ "ts-jest": "^29.0.3",
57
+ "tsup": "^6.2.2",
58
+ "typescript": "^4.7.2",
59
+ "whatwg-fetch": "^3.6.2"
50
60
  },
51
61
  "sideEffects": false
52
62
  }