-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.4 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
{
"name": "phase-zero",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"description": "An open, multilingual guide to the Marvel cinematic universes.",
"repository": {
"type": "git",
"url": "https://github.com/synaps3s/phase-zero.git"
},
"engines": {
"node": ">=20.3.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build && node scripts/build-headers.mjs && node scripts/build-sitemap.mjs",
"preview": "astro preview",
"check": "astro check",
"lint:text": "node scripts/lint-text.mjs",
"check:i18n": "node scripts/check-i18n.mjs",
"check:sources": "node scripts/check-sources.mjs",
"validate": "npm run lint:text && npm run check:i18n && npm run check:sources && npm run check && npm run build && npm run check:figures",
"check:figures": "node scripts/check-figures.mjs",
"check:links": "node scripts/check-links.mjs"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.3.0",
"@fontsource-variable/archivo": "^5.3.0",
"@fontsource-variable/hanken-grotesk": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@fontsource-variable/jost": "^5.3.0",
"astro": "^7.3.1",
"remark-directive": "^4.0.0",
"unist-util-visit": "^5.1.0",
"zod": "^4.5.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"puppeteer-core": "^25.10.0",
"typescript": "^5.9.3",
"yaml": "^2.6.0"
}
}