Files
react-native-video/package.json
T
2025-06-02 15:04:22 +02:00

102 lines
2.8 KiB
JSON

{
"name": "@react-native-video",
"packageManager": "bun@1.1.42",
"private": true,
"repository": "https://github.com/TheWidlarzGroup/react-native-video-v7",
"author": "TheWidlarzGroup <hi@thewidlarzgroup.com> (https://github.com/TheWidlarzGroup)",
"workspaces": [
"packages/react-native-video",
"example",
"docs"
],
"scripts": {
"build": "bun react-native-video build",
"lint": "bun --filter=\"**\" lint",
"typecheck": "bun --filter=\"**\" typecheck",
"clean": "git clean -xdf",
"react-native-video": "bun run --cwd packages/react-native-video",
"example": "bun run --cwd example",
"generate-license": "bun run ./scripts/generate-third-party-licenses.js",
"postinstall": "patch-package --patch-dir example/patches"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@react-native/eslint-config": "^0.77.0",
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"commitlint": "^17.0.2",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@tsconfig/react-native": "^2.0.2",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.2.44",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"react": "18.3.1",
"react-native": "^0.77.0",
"release-it": "^17.10.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.13.0",
"patch-package": "^8.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun run --cwd packages/react-native-video build"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/react-native-video/package.json",
"path": "version"
},
{
"file": "example/package.json",
"path": "version"
}
]
},
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features ✨"
},
{
"type": "fix",
"section": "Bug Fixes 🐛"
},
{
"type": "chore(deps)",
"section": "Dependency Upgrades 📦"
},
{
"type": "docs",
"section": "Documentation 📚"
}
]
}
}
}
}
}