-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "bilibili-sc",
"type": "module",
"version": "0.1.3",
"private": true,
"packageManager": "pnpm@7.22.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"dev": "vite",
"build": "vue-tsc && vite-ssg build",
"preview": "vite preview",
"release": "bumpp",
"build:github": "vue-tsc --noEmit && vite-ssg build --base /BilibiliSC/",
"preview:github": "vite preview --base /BilibiliSC/",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --fix",
"lint:check": "eslint ."
},
"dependencies": {
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.1.9",
"changedpi": "^1.0.4",
"dayjs": "^1.11.7",
"dom-to-image": "^2.6.0",
"html2canvas": "^1.4.1",
"naive-ui": "^2.34.3",
"pinia": "^2.0.32",
"vue": "^3.2.45",
"vue-router": "4"
},
"devDependencies": {
"@bernankez/eslint-config": "^0.2.2",
"@bernankez/theme": "^0.1.2",
"@iconify-json/uil": "^1.1.4",
"@types/dom-to-image": "^2.6.4",
"@types/node": "^18.14.2",
"@vitejs/plugin-legacy": "^4.0.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue-macros/reactivity-transform": "^0.2.4",
"bumpp": "^9.0.0",
"changelogithub": "^0.12.7",
"eslint": "^8.35.0",
"happy-dom": "^8.9.0",
"lint-staged": "^13.1.2",
"sass": "^1.58.3",
"simple-git-hooks": "^2.8.1",
"terser": "^5.16.5",
"typescript": "^4.9.3",
"unocss": "^0.50.1",
"unplugin-auto-import": "^0.15.0",
"unplugin-vue-components": "^0.24.0",
"unplugin-vue-inspector": "^0.2.2",
"vite": "^4.1.4",
"vite-plugin-inspect": "^0.7.15",
"vite-plugin-pwa": "^0.14.4",
"vite-ssg": "^0.22.1",
"vitest": "^0.29.1",
"vue-tsc": "^1.0.24"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}