-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 844 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
31
32
{
"name": "@mkoppmann’s mneme",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "bun run dev:search && astro dev",
"dev:search": "astro build && pagefind --site dist --output-path public/pagefind",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/markdown-satteri": "^0.3.0",
"@astrojs/mdx": "6.0.3",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.3",
"astro": "6.4.7",
"markdown-it": "^14.1.1",
"sanitize-html": "^2.17.2",
"ultrahtml": "^1.6.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.16.1",
"pagefind": "^1.4.0",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1"
}
}