Add .gitignore to exclude all node packages and lock files
This commit is contained in:
+82
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"repository": {
|
||||
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/core"
|
||||
},
|
||||
"name": "remotion",
|
||||
"version": "4.0.423",
|
||||
"description": "Make videos programmatically",
|
||||
"main": "dist/cjs/index.js",
|
||||
"types": "dist/cjs/index.d.ts",
|
||||
"module": "dist/esm/index.mjs",
|
||||
"scripts": {
|
||||
"formatting": "prettier --experimental-cli src --check",
|
||||
"prepublishOnly": "bun ensure-correct-version.ts && cp ../../README.md .",
|
||||
"lint": "eslint src",
|
||||
"test": "bun test src/test",
|
||||
"make": "tsc -d && bun --env-file=../.env.bundle bundle.ts"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/remotion-dev/remotion/issues"
|
||||
},
|
||||
"author": "Jonny Burger <jonny@remotion.dev>",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"peerDependencies": {
|
||||
"react": ">=16.8.0",
|
||||
"react-dom": ">=16.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testing-library/react": "16.1.0",
|
||||
"@testing-library/dom": "10.4.0",
|
||||
"@happy-dom/global-registrator": "14.5.1",
|
||||
"@types/dom-webcodecs": "0.1.11",
|
||||
"happy-dom": "20.0.2",
|
||||
"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": [
|
||||
"video",
|
||||
"creation",
|
||||
"editor",
|
||||
"react",
|
||||
"player"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"./version": {
|
||||
"types": "./dist/cjs/version.d.ts",
|
||||
"module": "./dist/esm/version.mjs",
|
||||
"import": "./dist/esm/version.mjs",
|
||||
"require": "./dist/cjs/version.js"
|
||||
},
|
||||
"./no-react": {
|
||||
"types": "./dist/cjs/no-react.d.ts",
|
||||
"module": "./dist/esm/no-react.mjs",
|
||||
"import": "./dist/esm/no-react.mjs",
|
||||
"require": "./dist/cjs/no-react.js"
|
||||
}
|
||||
},
|
||||
"typesVersions": {
|
||||
">=1.0": {
|
||||
"version": [
|
||||
"dist/cjs/version.d.ts"
|
||||
],
|
||||
"no-react": [
|
||||
"dist/cjs/no-react.d.ts"
|
||||
]
|
||||
}
|
||||
},
|
||||
"homepage": "https://www.remotion.dev/docs/remotion"
|
||||
}
|
||||
Reference in New Issue
Block a user