-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 890 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 890 Bytes
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
{
"name": "blog-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"preview": "astro preview",
"build:astro": "astro build",
"build:pagefind": "bunx pagefind",
"build": "bun run --sequential build:{astro,pagefind}",
"copy:pagefind:dev": "bunx shx cp -r dist/pagefind public/",
"dev:astro": "astro dev",
"dev": "bun run --sequential build:pagefind copy:pagefind:dev dev:astro"
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@astrojs/sitemap": "^3.7.2",
"@fontsource-variable/inter": "^5.2.8",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@lucide/astro": "^1.7.0",
"@playform/compress": "^0.2.2",
"astro": "^6.1.1",
"astro-expressive-code": "^0.41.7",
"astro-pagefind": "^1.8.6",
"pagefind": "^1.4.0",
"rehype-autolink-headings": "^7.1.0"
},
"devDependencies": {
"astro-themes": "^0.2.7"
}
}