forked from antfu/antfu.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.03 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
{
"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"
},
"dependencies": {
"@vueuse/core": "^8.9.4",
"@vueuse/head": "^0.7.7",
"dayjs": "^1.11.4",
"nprogress": "^0.2.0",
"vue": "^3.2.37",
"vue-router": "4.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@iconify/json": "^2.1.72",
"@octokit/rest": "^19.0.3",
"@types/degit": "^2.8.3",
"@types/diacritics": "^1.3.1",
"@types/fs-extra": "^9.0.13",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@unocss/reset": "^0.44.7",
"@vitejs/plugin-vue": "^3.0.1",
"critters": "0.0.16",
"cross-env": "^7.0.3",
"degit": "^2.8.4",
"diacritics": "^1.3.0",
"eslint": "^8.20.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.11",
"feed": "^4.2.2",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"markdown-it-link-attributes": "^4.0.0",
"markdown-it-shiki": "^0.5.1",
"markdown-it-table-of-contents": "^0.6.0",
"pnpm": "^7.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"unocss": "^0.44.7",
"unplugin-auto-import": "^0.10.1",
"unplugin-icons": "^0.14.7",
"unplugin-vue-components": "^0.21.1",
"vite": "^3.0.2",
"vite-plugin-inspect": "^0.6.0",
"vite-plugin-pages": "^0.25.0",
"vite-plugin-pwa": "^0.12.3",
"vite-plugin-vue-markdown": "^0.20.1",
"vite-plugin-yaml": "^1.0.5",
"vite-ssg": "^0.20.2",
"vite-svg-loader": "^3.4.0"
},
"eslintConfig": {
"extends": "@antfu"
},
"pnpm": {
"overrides": {
"@vueuse/head": "0.7.0"
}
}
}