@liveblocks/client 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
+ 4edcdb968f0a4b1b85496e224b69b5d983aafc01
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/client",
3
- "version": "0.18.3-test2",
3
+ "version": "0.18.4",
4
4
  "description": "A client that lets you interact with Liveblocks servers.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -19,24 +19,36 @@
19
19
  "url": "https://github.com/liveblocks/liveblocks/issues"
20
20
  },
21
21
  "scripts": {
22
- "dev": "tsup --watch --onSuccess ../../scripts/build.sh",
23
22
  "build": "tsup && ../../scripts/build.sh",
24
23
  "format": "eslint --fix src/ && prettier --write src/",
25
24
  "lint": "eslint src/",
26
- "test": "jest --silent --verbose --passWithNoTests",
27
- "test:watch": "jest --silent --verbose --passWithNoTests --watch"
25
+ "test": "jest --watch --silent --verbose --config=./jest.config.js",
26
+ "test-ci": "jest --silent --verbose --passWithNoTests"
28
27
  },
29
28
  "license": "Apache-2.0",
30
29
  "dependencies": {
31
- "@liveblocks/core": "0.18.3-test2"
30
+ "@liveblocks/core": "0.18.4"
32
31
  },
33
32
  "devDependencies": {
34
- "@liveblocks/eslint-config": "*",
35
- "@liveblocks/jest-config": "*",
33
+ "@types/jest": "^29.1.2",
34
+ "@types/node-fetch": "^2.6.1",
36
35
  "@types/ws": "^8.5.3",
36
+ "@typescript-eslint/eslint-plugin": "^5.26.0",
37
+ "@typescript-eslint/parser": "^5.26.0",
37
38
  "dotenv": "^16.0.3",
39
+ "eslint": "^8.12.0",
40
+ "eslint-plugin-import": "^2.26.0",
41
+ "eslint-plugin-simple-import-sort": "^7.0.0",
38
42
  "fast-check": "^3.0.1",
43
+ "jest": "^29.1.2",
44
+ "jest-environment-jsdom": "^29.1.2",
39
45
  "msw": "^0.39.1",
46
+ "node-fetch": "2.6.7",
47
+ "prettier": "^2.7.1",
48
+ "ts-jest": "^29.0.3",
49
+ "tsup": "^6.2.2",
50
+ "typescript": "^4.7.2",
51
+ "whatwg-fetch": "^3.6.2",
40
52
  "ws": "^8.5.0"
41
53
  },
42
54
  "repository": {