-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.49 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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": "node build/scripts/link-aliases.mjs",
"build:packages": "turbo run build --filter='./packages/*'",
"build:sandbox": "turbo run build --filter=@videojs/sandbox...",
"build:cdn": "turbo run build:cdn --filter=@videojs/html",
"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",
"dev:packages": "turbo run dev --filter='./packages/*'",
"dev:sandbox": "turbo run dev --filter=@videojs/sandbox...",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:fix:file": "biome check --write",
"link:aliases": "node build/scripts/link-aliases.mjs",
"size": "node .github/scripts/bundle-size.js | node .github/scripts/bundle-size-report.js",
"test": "turbo run test",
"test:packages": "turbo run test --filter='./packages/*'",
"format:astro": "prettier --write 'site/src/**/*.astro'",
"typecheck": "tsc --build",
"changelog": "git-cliff --config cliff.toml --output CHANGELOG.md"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@biomejs/biome": "^2.4.2",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/format": "^20.0.0",
"@types/node": "^22.18.6",
"esbuild": "^0.27.3",
"git-cliff": "^2.12.0",
"lightningcss": "^1.32.0",
"lint-staged": "^16.2.3",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^18.0.0",
"rimraf": "^6.1.3",
"react-compiler-runtime": "^1.0.0",
"react-dom": "^18.0.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"turbo": "^2.9.0",
"typescript": "^6.0.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint"
},
"lint-staged": {
"*.astro": "prettier --write",
"*": "biome check --write --no-errors-on-unmatched"
}
}