-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"name": "pfcc-blog",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "CC0-1.0",
"packageManager": "pnpm@10.30.3",
"scripts": {
"postinstall": "simple-git-hooks",
"dev": "vitepress dev src",
"build": "tsx src/.vitepress/theme/hooks/beforeBuild.mts && vitepress build src",
"serve": "vitepress serve src",
"fmt": "lint-md src/**/*.md --fix && prettier --write .",
"fmt:check": "lint-md src/**/*.md && prettier --check .",
"img:compress": "tsx scripts/compress-image.mts",
"lint:filename": "tsx scripts/check-filename.mts"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@vite-pwa/vitepress": "^1.1.0",
"feed": "^5.1.0",
"tailwindcss": "^4.1.17",
"tsx": "^4.21.0",
"vite-plugin-pwa": "^1.2.0",
"vitepress": "^1.6.4",
"vue": "^3.5.25",
"workbox-window": "^7.4.0"
},
"devDependencies": {
"@lint-md/cli": "^2.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.1",
"markdown-it-mathjax3": "^4.3.2",
"prettier": "^3.7.3",
"sharp": "^0.34.5",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm run fmt"
}
}