Files
v10/package.json
T

63 lines
2.0 KiB
JSON

{
"name": "video.js",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@10.17.0",
"description": "Video.js 10 Monorepo",
"author": "Video.js Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/videojs/vjs-10-monorepo.git"
},
"engines": {
"node": ">=22.19.0",
"npm": ">=10.9.3"
},
"scripts": {
"prepare": "simple-git-hooks",
"postinstall": "pnpm link:opencode && pnpm link:agents",
"build:packages": "turbo run build --filter='./packages/*'",
"build:site": "turbo run build --filter=site",
"build": "turbo run build",
"clean": "turbo run clean",
"commitlint": "commitlint --config ./commitlint.config.js --edit",
"dev:site": "turbo run dev --filter=site",
"dev": "turbo run dev --parallel",
"dev:packages": "turbo run dev --parallel --filter='./packages/*'",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:fix:file": "biome check --write",
"link:opencode": "[ -e .opencode ] || ln -s .claude .opencode",
"link:agents": "[ -e AGENTS.md ] || ln -s CLAUDE.md AGENTS.md; [ -e agents ] || ln -s .claude agents",
"size": "size-limit",
"test": "turbo run test",
"typecheck": "tsc --build"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/format": "^20.0.0",
"@size-limit/esbuild": "^12.0.0",
"@size-limit/file": "^12.0.0",
"@types/node": "^22.18.6",
"lint-staged": "^16.2.3",
"react": "^18.0.0",
"react-compiler-runtime": "^1.0.0",
"react-dom": "^18.0.0",
"simple-git-hooks": "^2.13.1",
"size-limit": "^12.0.0",
"tsx": "^4.21.0",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched"
}
}