-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"author": "nixwai",
"license": "ISC",
"keywords": [
"unocss",
"unocss-preset"
],
"scripts": {
"preset:release": "pnpm run -C packages/core preset:release",
"preset:build": "pnpm run -C packages/core preset:build",
"preset:publish": "pnpm run -C packages/core preset:publish",
"docs:dev": "pnpm run -C docs docs:dev",
"docs:build": "pnpm run -C docs docs:build",
"play:dev": "pnpm run -C playground dev",
"play:build": "pnpm run -C playground build",
"prepare": "husky install",
"lint": "eslint ."
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/node": "catalog:",
"@unocss-preset/ctx": "workspace:*",
"@unocss/eslint-plugin": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"typescript": "catalog:",
"unocss": "catalog:"
},
"resolutions": {
"esbuild": "0.24.0"
},
"lint-staged": {
"*.{vue,js,ts,tsx,jsx}": [
"eslint . --fix"
]
}
}