-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "vue-scroll-area-monorepo",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -r --filter vue-scroll-area --filter playground run dev",
"dev:lib": "pnpm -C packages/scroll-area run dev",
"dev:play": "pnpm -C packages/playground run dev",
"play": "pnpm -C packages/playground run dev",
"build": "pnpm --filter vue-scroll-area build",
"build:play": "pnpm --filter playground build",
"preview": "pnpm --filter playground preview",
"test": "pnpm --filter vue-scroll-area test",
"format": "dprint fmt",
"format:check": "dprint check",
"lint": "oxlint --vue-plugin --type-aware --type-check",
"lint:check": "oxlint --vue-plugin --type-aware --type-check",
"lint:fix": "oxlint --vue-plugin --type-aware --type-check --fix",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"@vue/tsconfig": "^0.8.1",
"dprint": "^0.51.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxlint": "^1.43.0",
"oxlint-tsgolint": "^0.11.4",
"typescript": "catalog:",
"vite": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
},
"packageManager": "pnpm@10.13.1",
"lint-staged": {
"*.{ts,tsx,js,jsx,vue}": [
"dprint fmt",
"oxlint --vue-plugin --type-aware --deny-warnings"
],
"*.{json,md,toml,yaml,yml}": [
"dprint fmt"
]
}
}