@remotion/three 4.0.177 → 4.0.178

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.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +9 -14
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @remotion/three
2
+
3
+ Include React Three Fiber components in a Remotion video
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/three.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/three?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/three --save-exact
11
+ ```
12
+
13
+ When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
14
+ Remove the `^` character from the version number to use the exact version.
15
+
16
+ ## Usage
17
+
18
+ See the [documentation](https://www.remotion.dev/docs/three) for more information.
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/three"
4
+ },
2
5
  "name": "@remotion/three",
3
- "version": "4.0.177",
4
- "description": "Utility functions for using react-three-fiber with remotion",
6
+ "version": "4.0.178",
7
+ "description": "Include React Three Fiber components in a Remotion video",
5
8
  "main": "dist/cjs/index.js",
6
9
  "types": "dist/cjs/index.d.ts",
7
10
  "module": "dist/esm/index.mjs",
@@ -9,37 +12,28 @@
9
12
  "author": "Björn Zeutzheim",
10
13
  "contributors": [],
11
14
  "license": "MIT",
12
- "repository": {
13
- "url": "https://github.com/remotion-dev/remotion"
14
- },
15
15
  "bugs": {
16
16
  "url": "https://github.com/remotion-dev/remotion/issues"
17
17
  },
18
18
  "dependencies": {
19
- "remotion": "4.0.177"
19
+ "remotion": "4.0.178"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@react-three/fiber": ">=8.0.0",
23
23
  "react": ">=16.8.0",
24
24
  "react-dom": ">=16.8.0",
25
25
  "three": ">=0.137.0",
26
- "remotion": "4.0.177"
26
+ "remotion": "4.0.178"
27
27
  },
28
28
  "devDependencies": {
29
- "@jonny/eslint-config": "3.0.281",
30
29
  "@react-three/fiber": "8.13.5",
31
- "@types/node": "18.14.6",
32
- "@types/react": "18.3.1",
33
30
  "@types/react-reconciler": "^0.26.4",
34
31
  "@types/three": "0.157.2",
35
32
  "@types/web": "0.0.78",
36
- "eslint": "8.56.0",
37
- "prettier": "3.2.5",
38
- "prettier-plugin-organize-imports": "3.2.4",
39
33
  "react": "18.3.1",
40
34
  "react-dom": "18.3.1",
41
35
  "three": "0.158.0",
42
- "remotion": "4.0.177"
36
+ "remotion": "4.0.178"
43
37
  },
44
38
  "keywords": [
45
39
  "remotion",
@@ -61,6 +55,7 @@
61
55
  "require": "./dist/cjs/index.js"
62
56
  }
63
57
  },
58
+ "homepage": "https://www.remotion.dev/docs/three",
64
59
  "scripts": {
65
60
  "formatting": "prettier src --check",
66
61
  "lint": "eslint src --ext ts,tsx",