@rendley/sdk 1.0.2 → 1.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/dist/Engine.d.ts +5 -7
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/clip/Clip.d.ts +1 -11
- package/dist/modules/clip/ClipStyle.d.ts +12 -6
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -1
- package/dist/modules/clip/clips/gif/GifClip.d.ts +1 -1
- package/dist/modules/clip/clips/image/ImageClip.d.ts +1 -1
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +50 -0
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +1 -3
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +1 -1
- package/dist/modules/clip/clips/text/TextClip.d.ts +0 -2
- package/dist/modules/clip/clips/text/TextStyle.d.ts +1 -1
- package/dist/modules/clip/clips/video/VideoClip.d.ts +1 -1
- package/dist/modules/display/Display.d.ts +6 -6
- package/dist/modules/filter/Effect.d.ts +0 -1
- package/dist/modules/filter/Filter.d.ts +0 -4
- package/dist/modules/layer/Layer.d.ts +4 -18
- package/dist/modules/library/MediaData.d.ts +22 -0
- package/dist/modules/library/index.d.ts +2 -0
- package/dist/modules/timeline/Timeline.d.ts +1 -19
- package/dist/types/clip.types.d.ts +1 -0
- package/dist/utils/dom/recreateDomCanvas.d.ts +1 -0
- package/package.json +13 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rendley/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"license": "LICENSE",
|
|
5
5
|
"author": "Onix Technologies",
|
|
6
6
|
"homepage": "https://rendley.com",
|
|
@@ -35,15 +35,16 @@
|
|
|
35
35
|
"obfuscate": "node ./plugins/obfuscate.js",
|
|
36
36
|
"test": "jest",
|
|
37
37
|
"lint": "eslint --ext .ts,.tsx src --fix",
|
|
38
|
-
"format": "prettier --write 'src/**/*.{ts,tsx}'"
|
|
38
|
+
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
39
|
+
"postinstall": "patch-package"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"@babel/core": "7.23.7",
|
|
42
43
|
"@babel/preset-env": "7.23.7",
|
|
43
44
|
"@babel/preset-typescript": "7.23.3",
|
|
44
|
-
"@types/emscripten": "
|
|
45
|
+
"@types/emscripten": "1.39.10",
|
|
45
46
|
"@types/eventemitter3": "2.0.2",
|
|
46
|
-
"@types/gradient-parser": "
|
|
47
|
+
"@types/gradient-parser": "0.1.5",
|
|
47
48
|
"@types/jest": "29.5.11",
|
|
48
49
|
"@types/node": "20.10.6",
|
|
49
50
|
"@types/uuid": "9.0.8",
|
|
@@ -54,18 +55,22 @@
|
|
|
54
55
|
"eslint-plugin-import": "2.29.1",
|
|
55
56
|
"javascript-obfuscator": "4.1.0",
|
|
56
57
|
"jest": "29.7.0",
|
|
58
|
+
"patch-package": "8.0.0",
|
|
59
|
+
"postinstall-postinstall": "2.1.0",
|
|
57
60
|
"prettier": "3.1.1",
|
|
58
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
59
61
|
"ts-jest": "29.1.1",
|
|
60
|
-
"typedoc": "
|
|
62
|
+
"typedoc": "0.25.12",
|
|
61
63
|
"typescript": "5.3.3",
|
|
62
64
|
"vite": "5.0.12",
|
|
63
65
|
"vite-plugin-dts": "3.7.2"
|
|
64
66
|
},
|
|
65
67
|
"dependencies": {
|
|
66
|
-
"@pixi/gif": "
|
|
68
|
+
"@pixi/gif": "2.1.1",
|
|
69
|
+
"@tweenjs/tween.js": "23.1.2",
|
|
70
|
+
"bodymovin": "4.13.0",
|
|
67
71
|
"eventemitter3": "5.0.1",
|
|
68
|
-
"gradient-parser": "
|
|
72
|
+
"gradient-parser": "1.0.2",
|
|
73
|
+
"lottie-web": "5.12.2",
|
|
69
74
|
"pixi.js": "7.4.0",
|
|
70
75
|
"uuid": "9.0.1",
|
|
71
76
|
"zod": "3.22.4"
|