-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.53 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
52
{
"name": "stackarchitect",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"test": "node --test",
"dev": "astro dev",
"build": "node scripts/claims-guard.mjs && astro build && node scripts/schema-visible-guard.mjs",
"preview": "astro preview",
"astro": "astro",
"generate-types": "wrangler types",
"seo:audit": "node seo-audit.mjs",
"seo:crawl": "node seo-crawl-audit.mjs",
"gsc:coverage": "node gsc-coverage.mjs",
"pricing-audit": "node scripts/pricing-audit.mjs",
"a11y": "node scripts/a11y-contrast.mjs",
"claims": "node scripts/claims-guard.mjs --list",
"claims:register": "node scripts/claims-register.mjs",
"schema:check": "node scripts/schema-visible-guard.mjs --list",
"claims:burndown": "node scripts/claims-burndown.mjs"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.7",
"@astrojs/mdx": "^5.0.3",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.2",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/sora": "^5.2.8",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.3",
"astro-og-canvas": "^0.13.0",
"googleapis": "^173.0.0",
"tailwindcss": "^4.2.2",
"wrangler": "^4.80.0",
"xml2js": "^0.6.2"
},
"overrides": {
"vite": "^7"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"fast-xml-parser": "^5.10.1",
"gray-matter": "^4.0.3",
"playwright": "^1.62.1",
"typescript": "^5.9.3"
}
}