@deckedout/visual-editor 1.0.7 → 1.0.8
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/README.md +166 -15
- package/dist/index.d.mts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deckedout/visual-editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A flexible visual editor for building interactive canvases with drag-and-drop elements",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
+
"start": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
22
23
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
23
24
|
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
24
25
|
"prepublishOnly": "npm run build",
|
|
@@ -27,7 +28,9 @@
|
|
|
27
28
|
"test": "jest",
|
|
28
29
|
"test:watch": "jest --watch",
|
|
29
30
|
"test:coverage": "jest --coverage",
|
|
30
|
-
"test:ci": "jest --ci --coverage --maxWorkers=2"
|
|
31
|
+
"test:ci": "jest --ci --coverage --maxWorkers=2",
|
|
32
|
+
"docs": "typedoc",
|
|
33
|
+
"docs:watch": "typedoc --watch"
|
|
31
34
|
},
|
|
32
35
|
"keywords": [
|
|
33
36
|
"visual-editor",
|
|
@@ -83,6 +86,7 @@
|
|
|
83
86
|
"input-otp": "^1.4.2",
|
|
84
87
|
"lucide-react": "^0.544.0",
|
|
85
88
|
"next-themes": "^0.4.6",
|
|
89
|
+
"picomatch": "^4.0.3",
|
|
86
90
|
"react-colorful": "^5.6.1",
|
|
87
91
|
"react-day-picker": "^9.11.1",
|
|
88
92
|
"react-hook-form": "^7.66.0",
|
|
@@ -116,9 +120,10 @@
|
|
|
116
120
|
"konva": "^10.0.8",
|
|
117
121
|
"react": "^18.3.1",
|
|
118
122
|
"react-dom": "^18.3.1",
|
|
119
|
-
"react-konva": "^
|
|
123
|
+
"react-konva": "^18.2.10",
|
|
120
124
|
"ts-jest": "^29.4.5",
|
|
121
125
|
"tsup": "^8.0.1",
|
|
126
|
+
"typedoc": "^0.28.14",
|
|
122
127
|
"typescript": "^5.7.3"
|
|
123
128
|
}
|
|
124
|
-
}
|
|
129
|
+
}
|