-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.02 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
{
"name": "noir1458-astro-blog",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"new": "node scripts/new-post.mjs",
"translate:snapshot": "node scripts/translation-safety.mjs snapshot",
"translate:verify": "node scripts/translation-safety.mjs verify",
"lint": "biome lint --error-on-warnings .",
"format": "biome format --write .",
"format:check": "biome format .",
"check:workflow": "node scripts/check-workflow.mjs",
"check:config": "node --test scripts/config.test.mjs scripts/sidebar-categories.test.mjs scripts/site-paths.test.mjs && node scripts/check-config.mjs && node scripts/check-user-boundaries.mjs",
"check:translation": "node --test scripts/translation-safety.test.mjs",
"check:content": "node --test scripts/project-content.test.mjs && node scripts/check-content.mjs",
"check:service-worker": "node --test scripts/service-worker.test.mjs",
"check:build": "node scripts/check-build.mjs",
"check:features": "node scripts/check-feature-build.mjs",
"check": "npm run check:workflow && npm run lint && npm run format:check && npm run check:config && npm run check:translation && npm run check:content && astro check && npm run build && npm run check:build && npm run check:service-worker && npm run check:features",
"publish": "node scripts/publish.mjs"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.0.0",
"@astrojs/rss": "^4.0.0",
"@astrojs/sitemap": "^3.0.0",
"astro": "7.1.3",
"gray-matter": "^4.0.3",
"katex": "^0.16.0",
"pagefind": "^1.0.0",
"rehype-katex": "^7.0.0",
"rehype-mermaid": "^3.0.0",
"remark-math": "^6.0.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@biomejs/biome": "2.5.11",
"playwright": "^1.62.1",
"typescript": "^5.9.0"
}
}