ugcinc-render 1.3.5
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 +257 -0
- package/dist/index.d.mts +1200 -0
- package/dist/index.d.ts +1200 -0
- package/dist/index.js +1487 -0
- package/dist/index.mjs +1425 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ugcinc-render",
|
|
3
|
+
"version": "1.3.5",
|
|
4
|
+
"description": "Unified Remotion rendering package for UGC Inc - shared types, components, and compositions for pixel-perfect client/server rendering",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./types": {
|
|
15
|
+
"types": "./dist/types/index.d.ts",
|
|
16
|
+
"import": "./dist/types/index.mjs",
|
|
17
|
+
"require": "./dist/types/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./compositions": {
|
|
20
|
+
"types": "./dist/compositions/index.d.ts",
|
|
21
|
+
"import": "./dist/compositions/index.mjs",
|
|
22
|
+
"require": "./dist/compositions/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./components": {
|
|
25
|
+
"types": "./dist/components/index.d.ts",
|
|
26
|
+
"import": "./dist/components/index.mjs",
|
|
27
|
+
"require": "./dist/components/index.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
32
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
33
|
+
"lint": "eslint src/",
|
|
34
|
+
"typecheck": "tsc --noEmit"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"README.md"
|
|
39
|
+
],
|
|
40
|
+
"keywords": [
|
|
41
|
+
"remotion",
|
|
42
|
+
"video-rendering",
|
|
43
|
+
"canvas",
|
|
44
|
+
"react"
|
|
45
|
+
],
|
|
46
|
+
"author": "UGC Inc",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
50
|
+
"remotion": "^4.0.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@remotion/player": "^4.0.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@remotion/bundler": "^4.0.0",
|
|
57
|
+
"@remotion/renderer": "^4.0.0",
|
|
58
|
+
"@types/react": "^18.2.0",
|
|
59
|
+
"eslint": "^8.0.0",
|
|
60
|
+
"react": "^18.2.0",
|
|
61
|
+
"remotion": "^4.0.0",
|
|
62
|
+
"tsup": "^8.0.0",
|
|
63
|
+
"typescript": "^5.3.0"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|