@liveblocks/emails 3.18.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/emails",
3
- "version": "3.18.1",
3
+ "version": "3.18.3-test1",
4
4
  "description": "A set of functions and utilities to make sending emails based on Liveblocks notification events easy. 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,36 @@
24
24
  "dist/**",
25
25
  "README.md"
26
26
  ],
27
- "scripts": {
28
- "dev": "tsup --watch",
29
- "build": "tsup",
30
- "start": "tsup --watch",
31
- "format": "(eslint --fix src/ || true) && prettier --write src/",
32
- "lint": "eslint src/",
33
- "lint:package": "publint --strict && attw --pack",
34
- "test": "NODE_OPTIONS=\"--no-deprecation\" vitest run",
35
- "test:ci": "NODE_OPTIONS=\"--no-deprecation\" vitest run",
36
- "test:types": "ls test-d/* | xargs -n1 tsd --files",
37
- "test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
38
- },
39
27
  "dependencies": {
40
- "@liveblocks/core": "3.18.1",
41
- "@liveblocks/node": "3.18.1"
28
+ "@liveblocks/node": "3.18.3-test1",
29
+ "@liveblocks/core": "3.18.3-test1"
42
30
  },
43
31
  "peerDependencies": {
44
- "react": "^18 || ^19 || ^19.0.0-rc"
32
+ "react": "^18 || ^19 || ^19.0.0-rc",
33
+ "y-prosemirror": "^1",
34
+ "yjs": "^13"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "y-prosemirror": {
38
+ "optional": true
39
+ },
40
+ "yjs": {
41
+ "optional": true
42
+ }
45
43
  },
46
44
  "devDependencies": {
47
- "@liveblocks/eslint-config": "*",
48
- "@liveblocks/vitest-config": "*",
49
45
  "csstype": "3.0.2",
50
- "msw": "^2.10.4"
46
+ "eslint": "^9.39.4",
47
+ "eslint-plugin-react-hooks": "^5.2.0",
48
+ "msw": "^2.10.4",
49
+ "react": "^18.2.0",
50
+ "react-dom": "^18.2.0",
51
+ "typescript": "^5.9.3",
52
+ "vitest": "^4.1.4",
53
+ "y-prosemirror": "^1.3.7",
54
+ "yjs": "^13.6.27",
55
+ "@liveblocks/eslint-config": "0.0.0",
56
+ "@liveblocks/vitest-config": "1.0.0"
51
57
  },
52
58
  "sideEffects": false,
53
59
  "bugs": {
@@ -78,5 +84,16 @@
78
84
  "rooms",
79
85
  "documents",
80
86
  "conflict resolution"
81
- ]
82
- }
87
+ ],
88
+ "scripts": {
89
+ "dev": "tsup --watch",
90
+ "build": "tsup",
91
+ "start": "tsup --watch",
92
+ "format": "(eslint --fix src/ || true) && prettier --write src/",
93
+ "lint": "eslint src/",
94
+ "lint:package": "publint --strict && attw --pack",
95
+ "test": "vitest run",
96
+ "test:ci": "vitest run",
97
+ "test:watch": "vitest"
98
+ }
99
+ }