@remotion/zod-types 4.0.424 → 4.0.426

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.
@@ -6,4 +6,4 @@ export declare const parseColor: (value: string) => {
6
6
  g: number;
7
7
  b: number;
8
8
  };
9
- export declare const zColor: () => z.ZodEffects<z.ZodString, string, string>;
9
+ export declare const zColor: () => z.ZodString;
@@ -1,3 +1,3 @@
1
1
  import { z } from 'zod';
2
2
  export declare const REMOTION_MATRIX_BRAND = "__remotion-matrix";
3
- export declare const zMatrix: () => z.ZodEffects<z.ZodArray<z.ZodNumber, "many">, number[], number[]>;
3
+ export declare const zMatrix: () => z.ZodArray<z.ZodNumber>;
package/package.json CHANGED
@@ -3,14 +3,14 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/zod-types"
4
4
  },
5
5
  "name": "@remotion/zod-types",
6
- "version": "4.0.424",
6
+ "version": "4.0.426",
7
7
  "description": "Zod types for Remotion",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
10
10
  "module": "dist/esm/index.mjs",
11
11
  "sideEffects": false,
12
12
  "scripts": {
13
- "formatting": "prettier --experimental-cli src --check",
13
+ "formatting": "prettier src --check",
14
14
  "lint": "eslint src",
15
15
  "make": "tsgo -d && bun --env-file=../.env.bundle bundle.ts"
16
16
  },
@@ -21,14 +21,14 @@
21
21
  "url": "https://github.com/remotion-dev/remotion/issues"
22
22
  },
23
23
  "dependencies": {
24
- "remotion": "4.0.424"
24
+ "remotion": "4.0.426"
25
25
  },
26
26
  "peerDependencies": {
27
- "zod": "3.22.3"
27
+ "zod": "4.3.6"
28
28
  },
29
29
  "devDependencies": {
30
- "zod": "3.22.3",
31
- "@remotion/eslint-config-internal": "4.0.424",
30
+ "zod": "4.3.6",
31
+ "@remotion/eslint-config-internal": "4.0.426",
32
32
  "eslint": "9.19.0",
33
33
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
34
34
  },