@jbpark/live-editor 2.0.3 → 2.0.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.
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.4",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"module": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"sideEffects": [
|
|
11
|
+
"sideEffects": [
|
|
12
|
+
"**/*.css"
|
|
13
|
+
],
|
|
12
14
|
"description": "Interactive UI editor with real-time preview and drag-and-drop. Syncs canvas edits back to source code via AST transforms and renders the preview in an iframe for DOM/CSS isolation (not a security sandbox).",
|
|
13
15
|
"keywords": [
|
|
14
16
|
"live-editor",
|
|
@@ -126,6 +128,8 @@
|
|
|
126
128
|
"devDependencies": {
|
|
127
129
|
"@changesets/cli": "^3.0.0",
|
|
128
130
|
"@eslint/js": "^9.39.5",
|
|
131
|
+
"@testing-library/dom": "^10.4.1",
|
|
132
|
+
"@testing-library/react": "^16.3.3",
|
|
129
133
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
130
134
|
"@tsdown/css": "^0.22.14",
|
|
131
135
|
"@types/babel__standalone": "^7.1.9",
|
|
@@ -140,6 +144,7 @@
|
|
|
140
144
|
"eslint-plugin-react-refresh": "^0.5.4",
|
|
141
145
|
"globals": "^17.11.0",
|
|
142
146
|
"husky": "^9.1.7",
|
|
147
|
+
"jsdom": "^30.0.1",
|
|
143
148
|
"lint-staged": "^17.3.0",
|
|
144
149
|
"prettier-plugin-classnames": "^0.10.4",
|
|
145
150
|
"prettier-plugin-merge": "^0.10.1",
|