@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.
Files changed (2) hide show
  1. package/README.md +18 -7
  2. package/package.json +7 -13
package/README.md CHANGED
@@ -1,7 +1,18 @@
1
- # `@remotion/animation-utils`
2
-
3
- Docs: https://remotion.dev/docs/animation-utils
4
-
5
- ## License
6
-
7
- MIT
1
+ # @remotion/animation-utils
2
+
3
+ Helpers for animating CSS properties
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/animation-utils.svg?style=flat&color=black&label=Downloads)](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.176",
8
- "description": "A set of animation utilities for Remotion",
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.176"
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": "vitest --run"
46
+ "test": "bun test src"
53
47
  }
54
48
  }