@remotion/animation-utils 4.0.176 → 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.
- package/README.md +18 -7
- package/package.json +7 -13
package/README.md
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
# @remotion/animation-utils
|
|
2
|
+
|
|
3
|
+
Helpers for animating CSS properties
|
|
4
|
+
|
|
5
|
+
[](https://npmcharts.com/compare/@remotion/animation-utils?minimal=true)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @remotion/animation-utils --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
|
+
This is an internal package and has no documentation.
|
package/package.json
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/animation-utils"
|
|
4
|
+
},
|
|
2
5
|
"name": "@remotion/animation-utils",
|
|
3
6
|
"author": {
|
|
4
7
|
"name": "Chetan Karwa",
|
|
5
8
|
"email": "cbkarwa@gmail.com"
|
|
6
9
|
},
|
|
7
|
-
"version": "4.0.
|
|
8
|
-
"description": "
|
|
10
|
+
"version": "4.0.178",
|
|
11
|
+
"description": "Helpers for animating CSS properties",
|
|
9
12
|
"main": "./dist/index.js",
|
|
10
13
|
"module": "./dist/index.mjs",
|
|
11
14
|
"types": "./dist/index.d.ts",
|
|
12
15
|
"dependencies": {
|
|
13
|
-
"remotion": "4.0.
|
|
16
|
+
"remotion": "4.0.178"
|
|
14
17
|
},
|
|
15
18
|
"files": [
|
|
16
19
|
"dist",
|
|
@@ -20,15 +23,6 @@
|
|
|
20
23
|
"react": ">=16.8.0",
|
|
21
24
|
"react-dom": ">=16.8.0"
|
|
22
25
|
},
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@types/react": "18.3.1",
|
|
25
|
-
"@types/node": "18.14.6",
|
|
26
|
-
"prettier": "3.2.5",
|
|
27
|
-
"prettier-plugin-organize-imports": "3.2.4",
|
|
28
|
-
"eslint": "8.56.0",
|
|
29
|
-
"@jonny/eslint-config": "3.0.281",
|
|
30
|
-
"vitest": "0.31.1"
|
|
31
|
-
},
|
|
32
26
|
"exports": {
|
|
33
27
|
"./package.json": "./package.json",
|
|
34
28
|
".": {
|
|
@@ -49,6 +43,6 @@
|
|
|
49
43
|
"formatting": "prettier src --check",
|
|
50
44
|
"lint": "eslint src --ext ts,tsx",
|
|
51
45
|
"build": "bun --env-file=../.env.bundle bundle.ts",
|
|
52
|
-
"test": "
|
|
46
|
+
"test": "bun test src"
|
|
53
47
|
}
|
|
54
48
|
}
|