use-everywhere 0.4.0 → 0.4.1
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 +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "use-everywhere",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "React hooks for state and messages shared across tabs, windows, and workers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonatan Kruszewski <jonakrusze@gmail.com>",
|
|
@@ -105,18 +105,20 @@
|
|
|
105
105
|
}
|
|
106
106
|
],
|
|
107
107
|
"dependencies": {
|
|
108
|
-
"@use-everywhere/core": "0.4.
|
|
108
|
+
"@use-everywhere/core": "0.4.1"
|
|
109
109
|
},
|
|
110
110
|
"peerDependencies": {
|
|
111
111
|
"react": ">=18"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
|
+
"@arethetypeswrong/cli": "^0.18.5",
|
|
114
115
|
"@size-limit/preset-small-lib": "^13.0.1",
|
|
115
116
|
"@testing-library/react": "^16.3.2",
|
|
116
117
|
"@types/react": "^19.2.17",
|
|
117
118
|
"@types/react-dom": "^19.2.3",
|
|
118
119
|
"@vitest/coverage-v8": "^4.1.10",
|
|
119
120
|
"happy-dom": "^20.11.1",
|
|
121
|
+
"publint": "^0.3.21",
|
|
120
122
|
"react": "^19.2.8",
|
|
121
123
|
"react-dom": "^19.2.8",
|
|
122
124
|
"size-limit": "^13.0.1",
|
|
@@ -135,6 +137,8 @@
|
|
|
135
137
|
"build": "tsup",
|
|
136
138
|
"test": "vitest run --coverage",
|
|
137
139
|
"typecheck": "tsc --noEmit",
|
|
138
|
-
"size": "size-limit"
|
|
140
|
+
"size": "size-limit",
|
|
141
|
+
"check:exports": "publint --strict && attw --pack .",
|
|
142
|
+
"pack:smoke": "node --import tsx ../tooling/pack-smoke.ts"
|
|
139
143
|
}
|
|
140
144
|
}
|