-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"type": "module",
"web-types": [
"./node_modules/mdui/web-types.zh-cn.json"
],
"dependencies": {
"@eslint/js": "^9.14.0",
"@fancyapps/ui": "^5.0.36",
"@mdui/icons": "^1.0.2",
"@mermaid-js/mermaid-zenuml": "^0.2.0",
"@types/http-proxy": "^1.17.15",
"@types/jquery": "^3.5.30",
"@types/katex": "^0.16.7",
"@types/node": "^20.11.28",
"@types/nprogress": "^0.2.3",
"@types/prismjs": "^1.26.4",
"@unocss/core": "^0.63.6",
"@unocss/eslint-config": "^0.63.6",
"autoprefixer": "^10.4.20",
"browserslist-useragent-regexp": "^4.1.3",
"clipboard": "^2.0.11",
"core-js": "^3.38.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-glob": "^3.3.2",
"http-proxy": "^1.18.1",
"husky": "^9.1.6",
"katex": "^0.16.11",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"mdui": "^2.1.2",
"mermaid": "^11.2.1",
"nprogress": "^0.2.0",
"pjax": "^0.2.8",
"postcss": "^8.4.47",
"postcss-gap-properties": "^6.0.0",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"shiki": "^1.18.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-less": "^3.0.1",
"typescript": "^5.4.2",
"typescript-eslint": "^8.13.0",
"unocss": "^0.63.6",
"vite": "^5.4.7"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"prepare": "husky",
"type-check": "tsc --noEmit",
"lint": "eslint --max-warnings 0 . && stylelint --max-warnings 0 **/*.{c,le}ss",
"lint:fix": "eslint --max-warnings 0 --fix . && stylelint --max-warnings 0 --fix **/*.{c,le}ss && prettier --write -u --log-level silent ."
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --max-warnings 0"
],
"*.{json,md,yml,yaml,cjs}": [
"prettier --ignore-unknown --write"
],
"*.{c,le}ss": [
"stylelint --fix --max-warnings 0",
"prettier --ignore-unknown --write"
]
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"version": "0.5.0"
}