-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "pfcc-blog",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "CC0-1.0",
"packageManager": "pnpm@9.13.2",
"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.15",
"@vite-pwa/vitepress": "^0.5.3",
"feed": "^4.2.2",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"vite-plugin-pwa": "^0.21.0",
"vitepress": "1.5.0",
"vue": "^3.5.12",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@lint-md/cli": "^2.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.9.0",
"prettier": "^3.3.3",
"sharp": "^0.33.5",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm run fmt"
}
}