@ikijs/editor 0.1.0 → 0.2.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/README.md +3 -3
- package/dist/index.js +297 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +297 -60
- package/dist/index.mjs.map +1 -1
- package/package.json +17 -3
package/package.json
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikijs/editor",
|
|
3
|
-
"version": "0.1
|
|
4
|
-
"description": "Headless editing core for .iki models — DOM-free commands, undo/redo,
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Headless editing core and auto-rigger for .iki 2D puppet models — DOM-free edit commands, undo/redo, atlas and UV math",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"iki",
|
|
7
|
+
"live2d",
|
|
8
|
+
"vtuber",
|
|
9
|
+
"2d-animation",
|
|
10
|
+
"puppet",
|
|
11
|
+
"rig",
|
|
12
|
+
"rigging",
|
|
13
|
+
"auto-rig",
|
|
14
|
+
"editor",
|
|
15
|
+
"avatar",
|
|
16
|
+
"animation",
|
|
17
|
+
"typescript"
|
|
18
|
+
],
|
|
5
19
|
"main": "dist/index.js",
|
|
6
20
|
"module": "dist/index.mjs",
|
|
7
21
|
"types": "dist/index.d.ts",
|
|
@@ -17,7 +31,7 @@
|
|
|
17
31
|
"!dist/metafile-*.json"
|
|
18
32
|
],
|
|
19
33
|
"dependencies": {
|
|
20
|
-
"@ikijs/format": "^0.
|
|
34
|
+
"@ikijs/format": "^0.2.0"
|
|
21
35
|
},
|
|
22
36
|
"devDependencies": {
|
|
23
37
|
"tsup": "^8.5.0",
|