-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "@unocss-preset-useful/monorepo",
"type": "module",
"version": "0.9.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r -F=./packages/* run build",
"stub": "pnpm -r -F=./packages/* --parallel run stub",
"dev": "pnpm stub",
"release": "pnpm lint:fix && bumpp -r",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:update": "vitest --update",
"play": "pnpm -C playground run dev",
"taze": "taze minor -wIr",
"typecheck": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@babel/types": "catalog:",
"@types/fs-extra": "catalog:",
"@types/node": "catalog:",
"@types/postcss-js": "catalog:",
"@unocss/eslint-plugin": "catalog:",
"@unocss/preset-legacy-compat": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"esno": "catalog:",
"fs-extra": "catalog:",
"lint-staged": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"unocss": "catalog:",
"unocss-preset-useful": "workspace:*",
"vite": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}