@remotion/player 4.0.357 → 4.0.361
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/package.json +65 -65
- package/bunfig.toml +0 -2
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/player"
|
|
4
|
+
},
|
|
5
|
+
"name": "@remotion/player",
|
|
6
|
+
"version": "4.0.361",
|
|
7
|
+
"description": "React component for embedding a Remotion preview into your app",
|
|
8
|
+
"main": "dist/cjs/index.js",
|
|
9
|
+
"types": "dist/cjs/index.d.ts",
|
|
10
|
+
"module": "dist/esm/index.mjs",
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"scripts": {
|
|
13
|
+
"formatting": "prettier --experimental-cli src --check",
|
|
14
|
+
"lint": "eslint src",
|
|
15
|
+
"make": "tsc -d && bun ensure-correct-version.ts && bun --env-file=../.env.bundle bundle.ts",
|
|
16
|
+
"test": "bun test src",
|
|
17
|
+
"prerelease": "cp ../../README.md ."
|
|
18
|
+
},
|
|
19
|
+
"exports": {
|
|
20
|
+
"./package.json": "./package.json",
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/cjs/index.d.ts",
|
|
23
|
+
"module": "./dist/esm/index.mjs",
|
|
24
|
+
"import": "./dist/esm/index.mjs",
|
|
25
|
+
"require": "./dist/cjs/index.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
30
|
+
},
|
|
31
|
+
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
32
|
+
"maintainers": [
|
|
33
|
+
"Jonny Burger <jonny@remotion.dev>",
|
|
34
|
+
"Shankhadeep Dey <shankhadeepdey99@gmail.com>"
|
|
35
|
+
],
|
|
36
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"remotion": "4.0.361"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"react": ">=16.8.0",
|
|
42
|
+
"react-dom": ">=16.8.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@testing-library/react": "16.1.0",
|
|
46
|
+
"@happy-dom/global-registrator": "14.5.1",
|
|
47
|
+
"csstype": "^3.1.1",
|
|
48
|
+
"react": "19.0.0",
|
|
49
|
+
"react-dom": "19.0.0",
|
|
50
|
+
"webpack": "5.96.1",
|
|
51
|
+
"zod": "3.22.3",
|
|
52
|
+
"@remotion/eslint-config-internal": "4.0.361",
|
|
53
|
+
"eslint": "9.19.0"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"remotion",
|
|
57
|
+
"ffmpeg",
|
|
58
|
+
"video",
|
|
59
|
+
"react",
|
|
60
|
+
"player"
|
|
61
|
+
],
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://www.remotion.dev/docs/player"
|
|
66
|
+
}
|
package/bunfig.toml
DELETED