mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "vjs-10-monorepo",
|
|
"version": "1.0.0",
|
|
"description": "A monorepo for Video.js 10 related library packages",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/core/*",
|
|
"packages/html/*",
|
|
"packages/react/*",
|
|
"packages/react-native/*",
|
|
"examples/*"
|
|
],
|
|
"scripts": {
|
|
"build:libs": "turbo run build --filter=!./examples/*",
|
|
"build": "turbo run build",
|
|
"clean": "turbo run clean",
|
|
"dev:html": "turbo run dev --filter=html-demo...",
|
|
"dev:react": "turbo run dev --filter=react-demo...",
|
|
"dev": "turbo run dev --parallel",
|
|
"format:check": "prettier . --check --log-level warn --cache",
|
|
"format": "prettier . --write --log-level warn --cache",
|
|
"lint": "turbo run lint",
|
|
"test": "turbo run test",
|
|
"typecheck": "turbo run typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^18.0.0",
|
|
"prettier": "^3.6.2",
|
|
"react": "^18.0.0",
|
|
"tsup": "^8.0.0",
|
|
"turbo": "^2.5.5",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"packageManager": "npm@10.9.2",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/videojs/vjs-10-monorepo.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "Video.js Contributors"
|
|
}
|