-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
57
58
59
60
61
62
{
"name": "ba-publication-guidelines",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vitepress dev docs",
"open:dist": "open ./docs/.vitepress/dist",
"build": "vitepress build docs",
"preview": "vitepress build docs && vitepress preview docs",
"format": "prettier --config .prettierrc.json -uw ./docs/components",
"prepare": "husky install"
},
"lint-staged": {
"docs/**/*.{ts,js,vue,md}": [
"prettier --config .prettierrc.json --write",
"git add"
],
"*.md": [
"prettier --config .prettierrc.json --write",
"git add"
]
},
"keywords": [],
"author": "碧蓝档案资讯站",
"license": "GPL-3.0",
"devDependencies": {
"@algolia/client-search": "4.27.0",
"@rushstack/eslint-patch": "1.16.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vite-pwa/vitepress": "0.5.4",
"@vue/eslint-config-typescript": "12.0.0",
"element-plus": "2.14.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-vue": "9.33.0",
"flexsearch": "0.8.212",
"markdown-it": "14.3.0",
"prettier": "3.9.5",
"sass": "1.101.0",
"typescript": "5.9.3",
"unplugin-auto-import": "0.19.0",
"unplugin-icons": "0.22.0",
"unplugin-vue-components": "0.28.0",
"vitepress": "1.6.4",
"vitepress-plugin-search": "1.0.4-alpha.22",
"vue": "3.5.39",
"vue-tsc": "1.8.27",
"workbox-window": "7.4.1"
},
"dependencies": {
"@types/node": "^20.3.1",
"@vueuse/core": "10.11.1",
"axios": "1.18.1",
"husky": "^8.0.3",
"vite": "5.4.21",
"vite-plugin-pwa": "0.21.2"
}
}