-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 922 Bytes
/
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
{
"name": "vidstack-workspace",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"player/**"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "node .scripts/start.js"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/node": "^18.0.0",
"execa": "^6.0.0",
"globby": "^13.0.0",
"lint-staged": "^13.0.0",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.11.0",
"prettier-plugin-svelte": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"prompts": "^2.4.2",
"simple-git-hooks": "^2.8.0",
"typescript": "^5.3.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"
}