-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.61 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.61 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
{
"name": "astro-cactus-blog",
"version": "6.5.0",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "pnpm exec playwright install chromium",
"build": "astro build",
"postbuild": "pagefind --site dist",
"preview": "astro preview",
"lint": "biome lint .",
"format": "pnpm run format:code && pnpm run format:imports",
"format:code": "biome format . --write && prettier -w \"**/*\" \"!**/*.{md,mdx}\" --ignore-unknown --cache",
"format:imports": "biome check --formatter-enabled=false --write",
"check": "astro check",
"test": "vitest run --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:html": "vitest run --reporter=html",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:urls": "node scripts/test-urls.js",
"test:quick": "vitest run --reporter=verbose"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.1.0",
"@astrojs/mdx": "5.0.3",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.2",
"@tailwindcss/vite": "4.2.2",
"astro": "6.1.2",
"astro-expressive-code": "^0.41.7",
"astro-icon": "^1.1.5",
"astro-robots-txt": "^1.0.0",
"astro-webmanifest": "^1.0.0",
"cssnano": "^7.1.4",
"hastscript": "^9.0.0",
"katex": "^0.16.44",
"mdast-util-directive": "^3.0.0",
"mdast-util-to-markdown": "^2.1.2",
"mdast-util-to-string": "^4.0.0",
"playwright": "^1.59.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-mermaid": "^3.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark-directive": "^4.0.0",
"remark-math": "^6.0.0",
"satori": "0.26.0",
"satori-html": "^0.3.2",
"sharp": "^0.34.5",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@biomejs/biome": "^2.4.4",
"@iconify-json/mdi": "^1.2.2",
"@pagefind/default-ui": "^1.4.0",
"@playwright/test": "^1.58.2",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/typography": "^0.5.19",
"@types/hast": "^3.0.4",
"@types/katex": "^0.16.7",
"@types/mdast": "^4.0.4",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.27",
"happy-dom": "^20.7.0",
"pagefind": "^1.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"reading-time": "^1.5.0",
"tailwindcss": "4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"sharp": "^0.34.2"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"sharp"
]
}
}