@liveblocks/redux 3.18.2 → 3.18.3-test2
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 +16 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -21
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
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liveblocks/redux",
|
|
3
|
-
"version": "3.18.
|
|
3
|
+
"version": "3.18.3-test2",
|
|
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,30 +24,13 @@
|
|
|
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/
|
|
39
|
-
"@liveblocks/
|
|
28
|
+
"@liveblocks/core": "3.18.3-test2",
|
|
29
|
+
"@liveblocks/client": "3.18.3-test2"
|
|
40
30
|
},
|
|
41
31
|
"peerDependencies": {
|
|
42
32
|
"redux": "^4 || ^5"
|
|
43
33
|
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@liveblocks/eslint-config": "*",
|
|
46
|
-
"@liveblocks/vitest-config": "*",
|
|
47
|
-
"@reduxjs/toolkit": "^2.8.2",
|
|
48
|
-
"@testing-library/dom": "^10.4.0",
|
|
49
|
-
"redux": "^5.0.1"
|
|
50
|
-
},
|
|
51
34
|
"sideEffects": false,
|
|
52
35
|
"bugs": {
|
|
53
36
|
"url": "https://github.com/liveblocks/liveblocks/issues"
|
|
@@ -75,4 +58,4 @@
|
|
|
75
58
|
"documents",
|
|
76
59
|
"conflict resolution"
|
|
77
60
|
]
|
|
78
|
-
}
|
|
61
|
+
}
|