-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.38 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
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
76
{
"name": "bokushi",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"dev:clean": "lsof -ti:4321 | xargs kill -9 2>/dev/null; rm -rf node_modules/.vite node_modules/.astro; astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "biome format --write .",
"lint": "biome check .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.10",
"@astrojs/mdx": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@iconify-json/ri": "^1.2.10",
"@tailwindcss/vite": "^4.2.2",
"aes-js": "^3.1.2",
"arctic": "^3.7.0",
"astro": "^6.1.6",
"astro-masonry": "^1.2.2",
"astro-pagefind": "^1.8.6",
"cheerio": "^1.2.0",
"markdown-it": "^14.1.1",
"mermaid": "^11.14.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-figure": "^1.0.1",
"rehype-img-size": "^1.0.1",
"rehype-mermaid": "^3.0.0",
"rehype-picture": "^5.0.0",
"rehype-slug": "^6.0.0",
"remark-github-blockquote-alert": "^2.1.0",
"sanitize-html": "^2.17.3",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@biomejs/biome": "^2.4.10",
"@iconify-json/simple-icons": "^1.2.77",
"@types/hast": "^3.0.4",
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.16.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.0.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"unplugin-icons": "^23.0.1",
"wrangler": "^4.84.1"
},
"pnpm": {
"overrides": {
"undici": ">=7.24.6",
"mdast-util-to-hast": ">=13.2.1",
"diff": ">=8.0.3",
"devalue": ">=5.6.3",
"fast-xml-parser": ">=5.7.0",
"dompurify": ">=3.4.0",
"ajv": ">=8.18.0",
"lodash-es": ">=4.18.1",
"axios": ">=1.13.5",
"h3": ">=1.15.5",
"tar": ">=7.5.8",
"lodash": ">=4.18.1"
}
}
}