-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
78
79
80
81
82
83
84
{
"name": "vuepress-blog",
"version": "0.0.1",
"description": "a blog made of vuepress",
"keywords": [
"vuepress",
"blog"
],
"homepage": "https://init-qy.github.io/vuepress-blog",
"license": "MIT",
"author": "init-qy",
"scripts": {
"auto-i18n": "python Auto-i18n/auto-translater.py",
"dev": "pnpm run docs:dev",
"docs:build": "vuepress build docs --clean-temp --clean-cache",
"docs:dev": "vuepress dev docs",
"docs:dev-nocache": "vuepress dev docs --clean-temp --clean-cache",
"docs:preview": "vite preview docs/.vuepress",
"lint": "pnpm lint:eslint && pnpm lint:md && pnpm lint:prettier",
"lint:eslint": "eslint --ext .js,.vue,.ts --fix .",
"lint:md": "markdownlint docs/ --fix",
"lint:prettier": "prettier --check --write .",
"prepare": "husky install",
"up": "taze major -I"
},
"lint-staged": {
"*.md": [
"markdownlint --fix",
"prettier --write"
],
"*.{js,ts,vue}": [
"eslint --fix"
],
"*.{json,yml}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@vueuse/core": "10.5.0",
"echarts": "5.4.3",
"lodash-es": "4.17.21",
"naive-ui": "^2.38.2",
"wasm-feature-detect": "^1.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "0.43.1",
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"@types/color": "3.0.5",
"@types/emscripten": "^1.39.12",
"@vuepress/client": "2.0.0-beta.67",
"eslint": "8.52.0",
"husky": "8.0.3",
"katex": "^0.16.10",
"lint-staged": "15.0.2",
"markdownlint-cli": "0.37.0",
"mathjax-full": "^3.2.2",
"prettier": "3.0.3",
"sass-loader": "13.3.2",
"sort-package-json": "2.6.0",
"taze": "^0.12.3",
"typescript": "5.2.2",
"unocss": "^0.57.7",
"vue": "3.3.7",
"vue-router": "4.2.5",
"vuepress": "2.0.0-beta.67",
"vuepress-plugin-search-pro": "2.0.0-beta.242",
"vuepress-theme-hope": "2.0.0-beta.242"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom",
"webpack"
]
}
}
}