-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
75 lines (75 loc) · 1.87 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
{
"name": "yunyoujun.github.io",
"type": "module",
"version": "2.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "YunYouJun Blog",
"author": {
"email": "[email protected]",
"name": "YunYouJun",
"url": "https://www.yunyoujun.cn"
},
"license": "CC-BY-NC-SA-4.0",
"homepage": "https://yunyoujun.cn",
"repository": {
"type": "git",
"url": "git+https://github.com/YunYouJun/yunyoujun.github.io.git"
},
"bugs": {
"url": "https://github.com/YunYouJun/yunyoujun.github.io/issues"
},
"keywords": [
"yunyoujun.cn",
"YunYouJun",
"云游君",
"Blog",
"博客",
"云游君的小站",
"www.yunyoujun.cn"
],
"scripts": {
"algolia": "echo todo",
"backup": "sh bash/backup.sh",
"build": "npm run fuse && npm run build:ssg",
"build:spa": "valaxy build",
"build:ssg": "valaxy build --ssg --log=info",
"clean": "rm -rf dist",
"dev": "valaxy",
"fuse": "valaxy fuse",
"rss": "valaxy rss",
"serve": "vite preview",
"lint": "eslint .",
"new": "valaxy new",
"typecheck": "vue-tsc --noEmit",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/sound": "^2.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@types/md5": "^2.3.5",
"@yunyoujun/sponsors": "^0.0.4",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"lint-staged": "^15.3.0",
"md5": "^2.3.0",
"simple-git-hooks": "^2.11.1",
"typescript": "5.6.2",
"valaxy": "^0.22.6",
"valaxy-addon-algolia": "^0.1.0",
"valaxy-addon-components": "^0.1.0",
"valaxy-addon-waline": "^0.2.0",
"valaxy-theme-yun": "^0.22.6",
"vite-plugin-remote-assets": "^0.6.0",
"vue-gtag-next": "^1.14.0",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}