@remotion/webcodecs 4.0.225 → 4.0.227

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 (1) hide show
  1. package/package.json +8 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/webcodecs",
3
- "version": "4.0.225",
3
+ "version": "4.0.227",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/esm/index.mjs",
@@ -17,11 +17,13 @@
17
17
  "author": "Jonny Burger <jonny@remotion.dev>",
18
18
  "license": "SEE LICENSE IN LICENSE.md",
19
19
  "dependencies": {
20
- "@remotion/media-parser": "4.0.225"
20
+ "@remotion/media-parser": "4.0.227"
21
21
  },
22
22
  "peerDependencies": {},
23
23
  "devDependencies": {
24
- "@types/dom-webcodecs": "0.1.11"
24
+ "@types/dom-webcodecs": "0.1.11",
25
+ "eslint": "9.14.0",
26
+ "@remotion/eslint-config-internal": "4.0.227"
25
27
  },
26
28
  "keywords": [],
27
29
  "publishConfig": {
@@ -30,8 +32,8 @@
30
32
  "description": "Media conversion in the browser",
31
33
  "scripts": {
32
34
  "formatting": "prettier src --check",
33
- "lint": "eslint src --ext ts,tsx",
34
- "make": "tsc -d && bun --env-file=../.env.bundle bundle.ts",
35
- "watch": "tsc -w"
35
+ "lint": "eslint src",
36
+ "watch": "tsc -w",
37
+ "make": "tsc -d && bun --env-file=../.env.bundle bundle.ts"
36
38
  }
37
39
  }