@liveblocks/core 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 +16 -0
- package/dist/index.cjs +19 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/package.json +26 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liveblocks/core",
|
|
3
|
-
"version": "3.18.
|
|
3
|
+
"version": "3.18.3-test1",
|
|
4
4
|
"description": "Private internals for Liveblocks. DO NOT import directly from this package!",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -31,32 +31,20 @@
|
|
|
31
31
|
"bugs": {
|
|
32
32
|
"url": "https://github.com/liveblocks/liveblocks/issues"
|
|
33
33
|
},
|
|
34
|
-
"scripts": {
|
|
35
|
-
"dev": "tsup --watch",
|
|
36
|
-
"build": "tsup && node dist/index.js",
|
|
37
|
-
"format": "(eslint --fix src/ e2e/ || true) && prettier --write src/ e2e/",
|
|
38
|
-
"lint": "eslint src/",
|
|
39
|
-
"lint:package": "publint --strict && attw --pack",
|
|
40
|
-
"test": "npx liveblocks dev -p 1154 -c 'vitest run --coverage'",
|
|
41
|
-
"test:ci": "vitest run",
|
|
42
|
-
"test:types": "vitest run --config ./vitest.config.typecheck.ts",
|
|
43
|
-
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest",
|
|
44
|
-
"test:e2e": "npx liveblocks dev -p 1154 -c 'vitest run --config=./vitest.config.e2e.ts'",
|
|
45
|
-
"test:deps": "depcruise src --exclude __tests__",
|
|
46
|
-
"showdeps": "depcruise src --include-only '^src' --exclude='__tests__' --output-type dot | dot -T svg > /tmp/dependency-graph.svg && open /tmp/dependency-graph.svg",
|
|
47
|
-
"showdeps:high-level": "depcruise src --include-only '^src' --exclude='(^src/index.ts|shallow.ts|__tests__)' --collapse='^src/(refs|lib|compat|types|crdts|protocol)' --output-type dot | dot -T svg > /tmp/dependency-graph.svg && open /tmp/dependency-graph.svg"
|
|
48
|
-
},
|
|
49
34
|
"license": "Apache-2.0",
|
|
50
35
|
"author": "Liveblocks Inc.",
|
|
51
36
|
"devDependencies": {
|
|
52
|
-
"@liveblocks/eslint-config": "*",
|
|
53
37
|
"@liveblocks/query-parser": "^0.1.1",
|
|
54
|
-
"@
|
|
38
|
+
"@types/json-schema": "^7.0.15",
|
|
55
39
|
"@types/ws": "^8.5.10",
|
|
56
|
-
"eslint
|
|
57
|
-
"fast-check": "^4.
|
|
40
|
+
"eslint": "^9.39.4",
|
|
41
|
+
"fast-check": "^4.6.0",
|
|
58
42
|
"msw": "^2.10.4",
|
|
59
|
-
"
|
|
43
|
+
"typescript": "^5.9.3",
|
|
44
|
+
"vitest": "^4.1.4",
|
|
45
|
+
"ws": "^8.17.1",
|
|
46
|
+
"@liveblocks/eslint-config": "0.0.0",
|
|
47
|
+
"@liveblocks/vitest-config": "1.0.0"
|
|
60
48
|
},
|
|
61
49
|
"peerDependencies": {
|
|
62
50
|
"@types/json-schema": "^7"
|
|
@@ -66,5 +54,20 @@
|
|
|
66
54
|
"url": "git+https://github.com/liveblocks/liveblocks.git",
|
|
67
55
|
"directory": "packages/liveblocks-core"
|
|
68
56
|
},
|
|
69
|
-
"sideEffects": false
|
|
70
|
-
|
|
57
|
+
"sideEffects": false,
|
|
58
|
+
"scripts": {
|
|
59
|
+
"dev": "tsup --watch",
|
|
60
|
+
"build": "tsup && node dist/index.js",
|
|
61
|
+
"format": "(eslint --fix src/ e2e/ || true) && prettier --write src/ e2e/",
|
|
62
|
+
"lint": "eslint src/",
|
|
63
|
+
"lint:package": "publint --strict && attw --pack",
|
|
64
|
+
"test": "pnpm dlx liveblocks dev -p 1160 -c 'vitest run --coverage'",
|
|
65
|
+
"test:ci": "vitest run",
|
|
66
|
+
"test:types": "vitest run --config ./vitest.config.typecheck.ts",
|
|
67
|
+
"test:watch": "vitest",
|
|
68
|
+
"test:e2e": "pnpm dlx liveblocks dev -p 1160 -c 'vitest run --config=./vitest.config.e2e.ts'",
|
|
69
|
+
"test:deps": "depcruise src --exclude __tests__",
|
|
70
|
+
"showdeps": "depcruise src --include-only '^src' --exclude='__tests__' --output-type dot | dot -T svg > /tmp/dependency-graph.svg && open /tmp/dependency-graph.svg",
|
|
71
|
+
"showdeps:high-level": "depcruise src --include-only '^src' --exclude='(^src/index.ts|shallow.ts|__tests__)' --collapse='^src/(refs|lib|compat|types|crdts|protocol)' --output-type dot | dot -T svg > /tmp/dependency-graph.svg && open /tmp/dependency-graph.svg"
|
|
72
|
+
}
|
|
73
|
+
}
|