@liveblocks/redux 3.18.2 → 3.18.3-test1

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.
package/LICENSE ADDED
@@ -0,0 +1,16 @@
1
+ Copyright 2021-present Liveblocks
2
+
3
+ This repository contains software under two licenses:
4
+
5
+ 1. Most of the code in this repository is licensed under the
6
+ Apache License 2.0 — see licenses/LICENSE-APACHE-2.0 for the
7
+ full license text.
8
+
9
+ 2. The following components are licensed under the
10
+ GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)
11
+ — see licenses/LICENSE-AGPL-3.0 for the full license text:
12
+
13
+ - packages/liveblocks-server (published as @liveblocks/server)
14
+ - tools/liveblocks-cli (published as liveblocks)
15
+
16
+ Each package's own LICENSE or package.json specifies its applicable license.
package/dist/index.cjs CHANGED
@@ -29,7 +29,7 @@ function mappingToFunctionIsNotAllowed(key) {
29
29
 
30
30
  // src/version.ts
31
31
  var PKG_NAME = "@liveblocks/redux";
32
- var PKG_VERSION = "3.18.2";
32
+ var PKG_VERSION = "3.18.3-test1";
33
33
  var PKG_FORMAT = "cjs";
34
34
 
35
35
  // src/index.ts
package/dist/index.js CHANGED
@@ -29,7 +29,7 @@ function mappingToFunctionIsNotAllowed(key) {
29
29
 
30
30
  // src/version.ts
31
31
  var PKG_NAME = "@liveblocks/redux";
32
- var PKG_VERSION = "3.18.2";
32
+ var PKG_VERSION = "3.18.3-test1";
33
33
  var PKG_FORMAT = "esm";
34
34
 
35
35
  // src/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/redux",
3
- "version": "3.18.2",
3
+ "version": "3.18.3-test1",
4
4
  "description": "A store enhancer to integrate Liveblocks into Redux stores. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Liveblocks Inc.",
@@ -24,29 +24,22 @@
24
24
  "dist/**",
25
25
  "README.md"
26
26
  ],
27
- "scripts": {
28
- "dev": "tsup --watch",
29
- "build": "tsup",
30
- "format": "(eslint --fix src/ || true) && prettier --write src/",
31
- "lint": "eslint src/",
32
- "lint:package": "publint --strict && attw --pack",
33
- "test": "npx liveblocks dev -p 1154 -c 'vitest run'",
34
- "test:ci": "vitest run",
35
- "test:watch": "vitest"
36
- },
37
27
  "dependencies": {
38
- "@liveblocks/client": "3.18.2",
39
- "@liveblocks/core": "3.18.2"
28
+ "@liveblocks/client": "3.18.3-test1",
29
+ "@liveblocks/core": "3.18.3-test1"
40
30
  },
41
31
  "peerDependencies": {
42
32
  "redux": "^4 || ^5"
43
33
  },
44
34
  "devDependencies": {
45
- "@liveblocks/eslint-config": "*",
46
- "@liveblocks/vitest-config": "*",
47
35
  "@reduxjs/toolkit": "^2.8.2",
48
36
  "@testing-library/dom": "^10.4.0",
49
- "redux": "^5.0.1"
37
+ "eslint": "^9.39.4",
38
+ "redux": "^5.0.1",
39
+ "typescript": "^5.9.3",
40
+ "vitest": "^4.1.4",
41
+ "@liveblocks/vitest-config": "1.0.0",
42
+ "@liveblocks/eslint-config": "0.0.0"
50
43
  },
51
44
  "sideEffects": false,
52
45
  "bugs": {
@@ -74,5 +67,15 @@
74
67
  "rooms",
75
68
  "documents",
76
69
  "conflict resolution"
77
- ]
78
- }
70
+ ],
71
+ "scripts": {
72
+ "dev": "tsup --watch",
73
+ "build": "tsup",
74
+ "format": "(eslint --fix src/ || true) && prettier --write src/",
75
+ "lint": "eslint src/",
76
+ "lint:package": "publint --strict && attw --pack",
77
+ "test": "pnpm dlx liveblocks dev -p 1161 -c 'vitest run'",
78
+ "test:ci": "vitest run",
79
+ "test:watch": "vitest"
80
+ }
81
+ }