-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "aruma",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"check": "astro check",
"build": "node scripts/fetch-external-anime.js && node scripts/fetchTwikooRecentComments.mjs && astro build && node scripts/copy-katex-css.js && node scripts/extract-math-symbols.js && node scripts/compress-katex-fonts.js && pagefind --site dist && node scripts/compress-fonts.js",
"preview": "astro preview",
"astro": "astro",
"type-check": "tsc --noEmit --isolatedDeclarations",
"format": "prettier --write ./src",
"lint": "eslint ./src --fix"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/mdx": "^7.0.2",
"@astrojs/node": "^11.0.2",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/svelte": "^9.0.1",
"@iconify/svelte": "^5.2.2",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.2",
"astro": "^7.0.6",
"axios": "^1.18.1",
"clsx": "^2.1.1",
"hastscript": "^9.0.1",
"katex": "^0.16.47",
"lucide-astro": "^0.556.0",
"mdui": "^2.1.4",
"mermaid": "^11.16.0",
"pace-js": "^1.2.4",
"pagefind": "^1.5.2",
"photoswipe": "^5.4.4",
"qrcode": "^1.5.4",
"rehype-components": "^0.3.0",
"rehype-katex": "^7.0.1",
"remark-directive": "^3.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.34.5",
"svelte": "^5.56.4",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"unist-util-visit": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mdast": "^4.0.4",
"@types/qrcode": "^1.5.6",
"@typescript-eslint/parser": "^8.62.1",
"astro-eslint-parser": "^1.4.0",
"eslint": "^10.6.0",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^3.20.0",
"fontmin": "^1.1.1",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.2",
"svelte-eslint-parser": "^1.8.0",
"typescript-eslint": "^8.62.1"
}
}