forked from afoim/fuwari
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.62 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fuwari",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:cdn": "node scripts/cdnify-images.js && astro build",
"cdnify": "node scripts/cdnify-images.js",
"preview": "astro preview",
"astro": "astro",
"type-check": "tsc --noEmit --isolatedDeclarations",
"new-post": "node scripts/new-post.js",
"post-commit": "node scripts/post-commit.js",
"clean": "node scripts/clean-unused-images.js",
"imgf": "node scripts/imgf.js",
"del-space": "node scripts/del-space.js",
"update-diff": "node scripts/update-diff.js",
"watermark": "node scripts/add-watermark.js",
"ai-summary": "node scripts/generate-ai-summary.js",
"format": "biome format --write ./src",
"lint": "biome check --write ./src",
"postinstall": "patch-package"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/svelte": "8.0.5",
"@astrojs/tailwind": "^6.0.2",
"@fancyapps/ui": "^6.0.5",
"@google/genai": "^1.43.0",
"@tailwindcss/typography": "^0.5.16",
"@toast-ui/editor": "^3.2.2",
"astro": "6.1.6",
"browser-image-compression": "^2.0.2",
"diff": "^8.0.3",
"dotenv": "^17.3.1",
"imagesloaded": "^5.0.0",
"katex": "^0.16.22",
"masonry-layout": "^4.2.2",
"mermaid": "^11.14.0",
"prismjs": "^1.30.0",
"qrcode": "^1.5.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-components": "^0.3.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"remark-directive": "^3.0.1",
"remark-directive-rehype": "^0.4.2",
"remark-math": "^6.0.0",
"remark-sectionize": "^2.1.0",
"svelte": "^5.28.2",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.7",
"@biomejs/biome": "1.9.4",
"@iconify-json/material-symbols-light": "^1.2.49",
"@iconify-json/mingcute": "^1.2.7",
"@iconify-json/simple-icons": "^1.2.42",
"@rollup/plugin-yaml": "^4.1.2",
"@types/diff": "^8.0.0",
"@types/hast": "^3.0.4",
"@types/markdown-it": "^14.1.2",
"@types/mdast": "^4.0.4",
"@types/sanitize-html": "^2.15.0",
"glob": "^11.0.3",
"hastscript": "^9.0.1",
"markdown-it": "^14.1.0",
"mdast-util-to-string": "^4.0.0",
"node-html-parser": "^7.0.1",
"patch-package": "^8.0.1",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"reading-time": "^1.5.0",
"rehype": "^13.0.2",
"sanitize-html": "^2.16.0",
"stylus": "^0.64.0",
"typescript": "^5.8.3",
"unist-util-visit": "^5.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"astro": "patches/astro.patch"
}
}
}