@imgly/plugin-ai-video-generation-web 0.2.12 → 0.2.15
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/CHANGELOG.md +18 -0
- package/README.md +319 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/eachlabs/KlingO1.image2video.d.ts +23 -0
- package/dist/eachlabs/KlingV26Pro.image2video.d.ts +23 -0
- package/dist/eachlabs/KlingV26Pro.text2video.d.ts +24 -0
- package/dist/eachlabs/Veo31.image2video.d.ts +25 -0
- package/dist/eachlabs/Veo31.text2video.d.ts +25 -0
- package/dist/eachlabs/createEachLabsClient.d.ts +37 -0
- package/dist/eachlabs/createVideoProvider.d.ts +107 -0
- package/dist/eachlabs/index.d.ts +19 -0
- package/dist/eachlabs/index.mjs +142 -0
- package/dist/eachlabs/index.mjs.map +7 -0
- package/dist/eachlabs/types.d.ts +10 -0
- package/dist/eachlabs/utils.d.ts +23 -0
- package/dist/fal-ai/index.mjs.map +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/dist/runware/Sora2.image2video.d.ts +32 -0
- package/dist/runware/Sora2.text2video.d.ts +30 -0
- package/dist/runware/Sora2Pro.image2video.d.ts +32 -0
- package/dist/runware/Sora2Pro.text2video.d.ts +30 -0
- package/dist/runware/Veo31.image2video.d.ts +33 -0
- package/dist/runware/Veo31.text2video.d.ts +31 -0
- package/dist/runware/Veo31Fast.image2video.d.ts +34 -0
- package/dist/runware/Veo31Fast.text2video.d.ts +32 -0
- package/dist/runware/createRunwareClient.d.ts +57 -0
- package/dist/runware/createVideoProvider.d.ts +109 -0
- package/dist/runware/index.d.ts +28 -0
- package/dist/runware/index.mjs +142 -0
- package/dist/runware/index.mjs.map +7 -0
- package/dist/runware/types.d.ts +10 -0
- package/dist/runware/utils.d.ts +5 -0
- package/package.json +43 -23
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type { RunwareClient } from './createRunwareClient';
|
|
2
|
+
export type { RunwareProviderConfiguration } from './createVideoProvider';
|
|
3
|
+
export declare const VIDEO_ASPECT_RATIO_MAP: Record<string, {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
}>;
|
|
7
|
+
export declare function getVideoDimensionsFromAspectRatio(aspectRatio: string): {
|
|
8
|
+
width: number;
|
|
9
|
+
height: number;
|
|
10
|
+
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imgly/plugin-ai-video-generation-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "AI video generation plugin for the CE.SDK editor",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"CE.SDK",
|
|
7
|
+
"plugin",
|
|
8
|
+
"AI",
|
|
9
|
+
"video-generation"
|
|
10
|
+
],
|
|
6
11
|
"repository": {
|
|
7
12
|
"type": "git",
|
|
8
13
|
"url": "git+https://github.com/imgly/plugins.git"
|
|
@@ -27,10 +32,42 @@
|
|
|
27
32
|
"./fal-ai": {
|
|
28
33
|
"import": "./dist/fal-ai/index.mjs",
|
|
29
34
|
"types": "./dist/fal-ai/index.d.ts"
|
|
35
|
+
},
|
|
36
|
+
"./runware": {
|
|
37
|
+
"import": "./dist/runware/index.mjs",
|
|
38
|
+
"types": "./dist/runware/index.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"./eachlabs": {
|
|
41
|
+
"import": "./dist/eachlabs/index.mjs",
|
|
42
|
+
"types": "./dist/eachlabs/index.d.ts"
|
|
30
43
|
}
|
|
31
44
|
},
|
|
32
45
|
"homepage": "https://img.ly/products/creative-sdk",
|
|
33
|
-
"files": [
|
|
46
|
+
"files": [
|
|
47
|
+
"LICENSE.md",
|
|
48
|
+
"README.md",
|
|
49
|
+
"CHANGELOG.md",
|
|
50
|
+
"dist/",
|
|
51
|
+
"bin/"
|
|
52
|
+
],
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@imgly/plugin-ai-generation-web": "0.2.15"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@fal-ai/client": "^1.3.0",
|
|
58
|
+
"@types/ndarray": "^1.0.14",
|
|
59
|
+
"chalk": "^5.3.0",
|
|
60
|
+
"concurrently": "^8.2.2",
|
|
61
|
+
"esbuild": "^0.19.11",
|
|
62
|
+
"eslint": "^8.51.0",
|
|
63
|
+
"lodash-es": "^4.17.21",
|
|
64
|
+
"openapi-types": "^12.1.3",
|
|
65
|
+
"typescript": "^5.3.3",
|
|
66
|
+
"@imgly/plugin-utils": "0.0.0"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"@cesdk/cesdk-js": "^1.49.1"
|
|
70
|
+
},
|
|
34
71
|
"scripts": {
|
|
35
72
|
"start": "npm run watch",
|
|
36
73
|
"clean": "pnpm exec rimraf dist",
|
|
@@ -40,29 +77,12 @@
|
|
|
40
77
|
"dev": "SKIP_DTS=true node scripts/watch.mjs",
|
|
41
78
|
"dev:wait": "node ../../scripts/dev-wait.mjs",
|
|
42
79
|
"dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
|
|
43
|
-
"publish:latest": "pnpm run build &&
|
|
44
|
-
"publish:next": "pnpm run build &&
|
|
80
|
+
"publish:latest": "pnpm run build && pnpm publish --tag latest --access public --no-git-checks",
|
|
81
|
+
"publish:next": "pnpm run build && pnpm publish --tag next --access public --no-git-checks",
|
|
45
82
|
"check:all": "concurrently -n lint,type,pretty \"pnpm run check:lint\" \"pnpm run check:types\" \"pnpm run check:pretty\"",
|
|
46
83
|
"check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
|
|
47
84
|
"check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
|
|
48
85
|
"check:types": "tsc --noEmit",
|
|
49
86
|
"types:create": "tsc --emitDeclarationOnly"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@imgly/plugin-ai-generation-web": "workspace:*",
|
|
54
|
-
"@fal-ai/client": "^1.3.0",
|
|
55
|
-
"@imgly/plugin-utils": "workspace:*",
|
|
56
|
-
"@types/ndarray": "^1.0.14",
|
|
57
|
-
"chalk": "^5.3.0",
|
|
58
|
-
"concurrently": "^8.2.2",
|
|
59
|
-
"esbuild": "^0.19.11",
|
|
60
|
-
"eslint": "^8.51.0",
|
|
61
|
-
"lodash-es": "^4.17.21",
|
|
62
|
-
"openapi-types": "^12.1.3",
|
|
63
|
-
"typescript": "^5.3.3"
|
|
64
|
-
},
|
|
65
|
-
"peerDependencies": {
|
|
66
|
-
"@cesdk/cesdk-js": "^1.49.1"
|
|
67
87
|
}
|
|
68
|
-
}
|
|
88
|
+
}
|