Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,66 @@
{
"repository": {
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/player"
},
"name": "@remotion/player",
"version": "4.0.423",
"description": "React component for embedding a Remotion preview into your app",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.mjs",
"sideEffects": false,
"scripts": {
"formatting": "prettier --experimental-cli src --check",
"lint": "eslint src",
"make": "tsc -d && bun ensure-correct-version.ts && bun --env-file=../.env.bundle bundle.ts",
"test": "bun test src",
"prerelease": "cp ../../README.md ."
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.mjs",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"bugs": {
"url": "https://github.com/remotion-dev/remotion/issues"
},
"author": "Jonny Burger <jonny@remotion.dev>",
"maintainers": [
"Jonny Burger <jonny@remotion.dev>",
"Shankhadeep Dey <shankhadeepdey99@gmail.com>"
],
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"remotion": "4.0.423"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@testing-library/react": "16.1.0",
"@happy-dom/global-registrator": "14.5.1",
"csstype": "^3.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"webpack": "5.105.0",
"zod": "3.22.3",
"@remotion/eslint-config-internal": "4.0.423",
"eslint": "9.19.0"
},
"keywords": [
"remotion",
"ffmpeg",
"video",
"react",
"player"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://www.remotion.dev/docs/player"
}