-
-
Notifications
You must be signed in to change notification settings - Fork 202
/
package.json
91 lines (91 loc) · 2.76 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
85
86
87
88
89
90
91
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "npm run static && cross-env NODE_ENV=production vite-ssg build && esno ./scripts/rss.ts && cp _dist_redirects dist/_redirects",
"dev": "vite --port 3333 --open",
"preview": "vite preview",
"static": "rimraf temp && degit antfu/static temp --force && esno scripts/copy-sponsors",
"redirects": "esno scripts/redirects.ts",
"lint": "eslint .",
"compress": "esno scripts/img-compress-staged.ts",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"dayjs": "^1.11.13",
"floating-vue": "^5.2.2",
"matter-attractors": "^0.1.6",
"matter-js": "^0.20.0",
"nprogress": "^0.2.0",
"shiki-magic-move": "^0.5.0",
"vue": "^3.5.12",
"vue-router": "4.2.5",
"vue-router-better-scroller": "^0.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@iconify/json": "^2.2.265",
"@octokit/rest": "^21.0.2",
"@shikijs/markdown-it": "^1.22.2",
"@shikijs/twoslash": "^1.22.2",
"@types/d3-hierarchy": "^3.1.7",
"@types/degit": "^2.8.6",
"@types/diacritics": "^1.3.3",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/nprogress": "^0.2.3",
"@types/prompts": "^2.4.9",
"@unhead/vue": "^1.11.10",
"@unocss/reset": "^0.63.6",
"@vitejs/plugin-vue": "^5.1.4",
"cross-env": "^7.0.3",
"d3-hierarchy": "^3.1.2",
"degit": "^2.8.4",
"diacritics": "^1.3.0",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.8.0",
"fast-glob": "^3.3.2",
"feed": "^4.2.2",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"lint-staged": "^15.2.10",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-github-alerts": "^0.3.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-magic-link": "^0.1.4",
"markdown-it-table-of-contents": "^0.8.0",
"p5i": "^0.5.0",
"picocolors": "^1.1.1",
"pinia": "^2.2.4",
"pnpm": "^9.12.3",
"prompts": "^2.4.2",
"rimraf": "^6.0.1",
"sharp": "0.32.6",
"shiki": "^1.22.2",
"simple-git": "^3.27.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"unocss": "^0.63.6",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-markdown": "^0.26.2",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.9",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-optimize-exclude": "^0.0.1",
"vite-ssg": "^0.23.8",
"vite-svg-loader": "^5.1.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}