-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.56 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.56 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mahiro",
"type": "module",
"version": "2.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"git": "node scripts/generate-git-info.mjs",
"watermark": "node scripts/add-watermark.mjs",
"cover:cache": "node scripts/cache-random-covers.mjs",
"ai:summary": "node scripts/generate-ai-summary.mjs",
"webp": "node scripts/convert-to-webp.mjs",
"build": "astro build",
"build:search": "pagefind --site dist && cpy 'dist/pagefind/**' public/pagefind",
"build:full": "npm run check && npm run build && npm run build:search",
"server:start": "npm --prefix server start",
"search:clean": "rimraf public/pagefind",
"search:index": "npm run build && npm run build:search",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.3.0",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.4.1",
"@astrojs/tailwind": "^6.0.2",
"@fancyapps/ui": "^6.0.21",
"@iconify/react": "^6.0.2",
"@notionhq/client": "^2.3.0",
"@playform/compress": "^0.1.9",
"@swup/astro": "^1.6.0",
"@tailwindcss/typography": "^0.5.16",
"astro": "^5.9.0",
"astro-icon": "^1.1.5",
"astro-iconify": "^1.2.0",
"astro-vtbot": "^2.1.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"diff": "^8.0.3",
"dotenv": "^16.5.0",
"glob": "^13.0.6",
"gsap": "^3.14.2",
"js-yaml": "^4.1.0",
"jsrsasign": "^11.1.0",
"katex": "^0.16.22",
"lucide-react": "^0.562.0",
"marked": "^14.1.4",
"mdast": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"motion": "^12.23.26",
"nprogress": "^0.2.0",
"octokit": "^4.1.4",
"opentype.js": "^1.3.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"scss": "^0.2.4",
"sharp": "^0.34.5",
"slugify": "^1.6.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.17",
"ts-debounce": "^4.0.0",
"vfile": "^6.0.3",
"zustand": "^5.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@iconify-json/line-md": "^1.2.11",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/lucide": "^1.2.44",
"@iconify-json/material-symbols": "^1.2.21",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/simple-icons": "^1.2.35",
"@iconify-json/tabler": "^1.2.18",
"@iconify/json": "^2.2.341",
"@iconify/tailwind": "^1.2.0",
"@pagefind/default-ui": "^1.3.0",
"@types/animejs": "^3.1.13",
"@types/diff": "^8.0.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^24.2.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/parser": "^8.32.1",
"animejs": "^4.3.6",
"cpy-cli": "^5.0.0",
"daisyui": "^4.12.24",
"eslint": "^9.27.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^1.0.1",
"pagefind": "^1.3.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"sass-embedded": "^1.89.0",
"shiki": "^1.29.2",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}