-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 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
{
"name": "lcpu-home",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"build:client": "vite build --outDir dist/static --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.ts",
"build:bundle": "run-p build:client build:server",
"build:render": "bunx tsx prerender.ts",
"build:sitemap": "bun ./sitemap.ts",
"build:post": "run-p build:render build:sitemap",
"build:all": "run-s build:bundle build:post"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@vueuse/core": "^12.2.0",
"compression": "^1.7.5",
"vue": "^3.5.13"
},
"devDependencies": {
"@shikijs/markdown-it": "^1.24.4",
"@shikijs/transformers": "^1.24.4",
"@tsconfig/node22": "^22.0.0",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.10",
"@types/node": "^22.10.2",
"@types/serve-static": "^1.15.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"express": "^4.21.2",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"markdown-it-mathjax3": "^4.3.2",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"shiki": "^1.24.4",
"sitemap": "^8.0.0",
"typescript": "~5.6.3",
"unocss": "^0.65.3",
"vite": "^6.0.6",
"vite-plugin-vue-devtools": "^7.6.8",
"vue-tsc": "^2.2.0"
}
}