generated from xiaohe0601/xiaohe-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ui-utils-kit",
"type": "module",
"version": "1.3.14",
"private": true,
"packageManager": "pnpm@10.10.0",
"description": "ui-utils-kit 是一个偏业务的前端工具函数库",
"author": "OFreshman",
"homepage": "https://ofreshman.github.io/ui-utils-kit/",
"repository": {
"type": "git",
"url": "https://github.com/OFreshman/ui-utils-kit"
},
"bugs": {
"url": "https://github.com/OFreshman/ui-utils-kit/issues"
},
"scripts": {
"prepare": "simple-git-hooks",
"play": "nr -C playground dev",
"build": "nr -r --filter=./packages/* build",
"release": "bumpp -r",
"lint": "eslint --cache .",
"lint:type": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint:fix": "nr lint --fix",
"stylelint:fix": "stylelint **/*.{css,scss,html,vue} --fix"
},
"dependencies": {
"@antfu/nip": "catalog:",
"husky": "catalog:",
"ui-utils-kit": "catalog:"
},
"devDependencies": {
"@antfu/ni": "catalog:",
"@antfu/utils": "catalog:",
"@xiaohe01/eslint-config": "catalog:",
"@xiaohe01/tsconfig": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"esno": "catalog:",
"lint-staged": "catalog:",
"simple-git-hooks": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": "eslint --fix"
}
}