-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "securing-the-realm",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "bunx --bun astro dev",
"start": "bunx --bun astro dev",
"build": "bunx --bun astro check && bunx --bun astro build",
"preview": "bunx --bun astro preview",
"astro": "bunx --bun astro",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "bun run lint && bunx --bun astro check",
"sync:webmentions": "bun scripts/sync-webmentions.mjs",
"send:webmentions": "bun scripts/send-webmentions.mjs"
},
"browserslist": "defaults, not ie <= 11",
"trustedDependencies": [
"@biomejs/biome"
],
"dependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/mdx": "^5.0.3",
"@astrojs/sitemap": "^3.6.0",
"astro": "^6.1.8",
"fast-xml-parser": "^5.3.6",
"fuse.js": "^7.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"typescript": "^5.9.3",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/hast": "^3.0.4",
"@types/node": "^25.5.0",
"sharp": "^0.34.5",
"tsx": "^4.20.6"
}
}