-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "blog",
"displayName": "Blog",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@8.15.6",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --color --fix .",
"zhlint:all": "zhlint \"{,!(node_modules)/**/}*.md\" --fix",
"format": "prettier . --write --ignore-unknown --plugin=prettier-plugin-astro",
"prepare": "husky && echo npx lint-staged > .husky/pre-commit"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/markdown-remark": "^5.0.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.2",
"@astrojs/solid-js": "^4.0.1",
"@resvg/resvg-js": "^2.6.2",
"astro": "^4.5.14",
"fuse.js": "^7.0.0",
"github-slugger": "^2.0.0",
"qrcode": "^1.5.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"solid-js": "^1.8.16",
"solid-satori": "^0.0.2",
"typescript": "^5.4.3"
},
"devDependencies": {
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@unocss/eslint-config": "^0.58.9",
"@unocss/preset-typography": "^0.58.9",
"@unocss/preset-uno": "^0.58.9",
"@unocss/reset": "^0.58.9",
"@unocss/transformer-directives": "^0.58.9",
"@unocss/transformer-variant-group": "^0.58.9",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.33.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-solid": "^0.13.2",
"gray-matter": "^4.0.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"sharp": "^0.33.3",
"unocss": "^0.58.9",
"unocss-preset-theme": "^0.12.0",
"zhlint": "^0.8.1"
},
"lint-staged": {
"*": [
"prettier --write --plugin=prettier-plugin-astro --ignore-unknown",
"astro check"
],
"*.{js,mjs,jsx,ts,mts,tsx,astro}": [
"eslint --fix"
],
"*.md": [
"node scripts/md-hook.js"
]
}
}