-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
25 lines (25 loc) · 854 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
{
"name": "vue-use-fixed-header-monorepo",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "concurrently \"pnpm -C packages/vue-use-fixed-header run watch\" \"pnpm -C playground install && pnpm -C playground run dev --host\"",
"build": "pnpm -C packages/vue-use-fixed-header run build",
"build:playground": "pnpm build && pnpm -C playground run build",
"test": "pnpm -C packages/vue-use-fixed-header run test",
"test:gui": "pnpm -C packages/vue-use-fixed-header run test:gui",
"prepare": "husky install"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.{js,ts,vue,json,css,md}": "prettier --write"
}
}