-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "public-interface",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22.12"
},
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build && node scripts/check-no-inline-styles.mjs && node scripts/check-artifacts.mjs",
"preview": "astro preview",
"check": "astro check",
"guard:css": "node scripts/check-no-inline-styles.mjs",
"guard:artifacts": "node scripts/check-artifacts.mjs",
"live-qc": "node scripts/live-qc.mjs",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/mdx": "^7.0.3",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@fontsource-variable/public-sans": "^5.3.0",
"@fontsource-variable/source-serif-4": "^5.3.0",
"astro": "^7.1.3",
"sharp": "^0.35.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^6.0.3"
}
}