-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "vuepress-frontend-notes",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.1.0",
"description": "Vuepress Frontend Notes",
"author": "Alex",
"license": "ISC",
"keywords": [
"vuepress",
"frontend",
"notes"
],
"main": "index.js",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "vuepress dev src",
"build": "vuepress build src",
"clean-dev": "vuepress dev src --clean-cache",
"postinstall": "simple-git-hooks",
"docs:dev": "vuepress dev src",
"docs:build": "vuepress build src",
"docs:clean-dev": "vuepress dev src --clean-cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@algolia/client-search": "^4.23.3",
"@antfu/eslint-config": "^2.16.1",
"@eslint/eslintrc": "^3.0.2",
"@iconify/vue": "^4.1.2",
"@types/node": "^20.12.8",
"@vuepress/bundler-vite": "2.0.0-rc.9",
"@vuepress/plugin-docsearch": "2.0.0-rc.26",
"@vuepress/plugin-shiki": "2.0.0-rc.25",
"echarts": "^5.5.0",
"eslint": "^8.57.0",
"eslint-plugin-markdownlint": "^0.5.0",
"eslint-plugin-perfectionist": "^2.10.0",
"flowchart.ts": "^3.0.0",
"github-slugger": "^2.0.0",
"katex": "^0.16.10",
"lint-staged": "^15.2.2",
"markmap-lib": "^0.17.0",
"markmap-toolbar": "^0.17.0",
"markmap-view": "^0.17.0",
"mermaid": "^10.9.0",
"reveal.js": "^5.1.0",
"simple-git-hooks": "^2.11.1",
"vue": "^3.4.26",
"vuepress": "2.0.0-rc.9",
"vuepress-theme-hope": "2.0.0-rc.38"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}