forked from th30d4y/HAST-CMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 705 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 705 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
{
"name": "hast-cms",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"typecheck": "tsc --noEmit",
"new:post": "node scripts/new-post.js",
"validate": "node scripts/validate-content.js"
},
"dependencies": {
"@astrojs/mdx": "^4.3.1",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.1",
"astro": "^5.7.13",
"pagefind": "^1.3.0",
"reading-time": "^1.5.0",
"sanitize-html": "^2.16.0"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@types/sanitize-html": "^2.13.0",
"typescript": "^5.8.3"
}
}