-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
57 lines (57 loc) · 1.54 KB
/
package.json
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
{
"name": "vidstack-workspace",
"version": "1.12.12",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run analyze build types --filter=./packages/*",
"build:vidstack": "turbo run analyze build types --filter=vidstack",
"build:react": "turbo run analyze build types --filter=react",
"changelog": "pnpm exec git cliff --output CHANGELOG.md",
"clean": "turbo run clean",
"format": "turbo run format --parallel",
"test": "turbo run test --parallel",
"preinstall": "npx only-allow pnpm",
"release": "pnpm build && node .scripts/release.js --next",
"release:dry": "pnpm run release --dry",
"validate": "turbo run build format test"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^18.19.43",
"chokidar": "^3.6.0",
"enquirer": "^2.4.1",
"esbuild": "^0.23.0",
"execa": "^6.1.0",
"fs-extra": "^11.2.0",
"git-cliff": "^1.4.0",
"globby": "^13.2.2",
"kleur": "^4.1.5",
"lint-staged": "^13.3.0",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"rimraf": "^3.0.2",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.0.12",
"typescript": "^5.6.0"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install lint-staged"
},
"lint-staged": {
"*": "prettier --write"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"volta": {
"node": "18.17.1"
},
"packageManager": "pnpm@8.7.0"
}