@remotion/zod-types 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 +17 -4
  2. package/package.json +7 -10
package/README.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @remotion/zod-types
2
-
3
- Includes utility types and Remotion-specific types for [Zod](https://github.com/colinhacks/zod).
4
-
5
- See documentation at https://remotion.dev/zod-types.
2
+
3
+ Zod types for Remotion
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/zod-types.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/zod-types?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/zod-types --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/zod-types) 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/zod-types"
4
+ },
2
5
  "name": "@remotion/zod-types",
3
- "version": "4.0.176",
4
- "description": "A color validator for Zod",
6
+ "version": "4.0.178",
7
+ "description": "Zod types for Remotion",
5
8
  "main": "dist/cjs/index.js",
6
9
  "types": "dist/cjs/index.d.ts",
7
10
  "module": "dist/esm/index.mjs",
@@ -9,23 +12,16 @@
9
12
  "author": "Jonny Burger",
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.176"
19
+ "remotion": "4.0.178"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "zod": "3.22.3"
23
23
  },
24
24
  "devDependencies": {
25
- "@jonny/eslint-config": "3.0.281",
26
- "eslint": "8.56.0",
27
- "prettier": "3.2.5",
28
- "prettier-plugin-organize-imports": "3.2.4",
29
25
  "zod": "3.22.3"
30
26
  },
31
27
  "keywords": [
@@ -45,6 +41,7 @@
45
41
  "require": "./dist/cjs/index.js"
46
42
  }
47
43
  },
44
+ "homepage": "https://www.remotion.dev/docs/zod-types",
48
45
  "scripts": {
49
46
  "formatting": "prettier src --check",
50
47
  "lint": "eslint src --ext ts,tsx",