-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "parentguidebook",
"private": true,
"type": "module",
"scripts": {
"dev": "ASTRO_TELEMETRY_DISABLED=1 astro dev",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"build": "ASTRO_TELEMETRY_DISABLED=1 astro build",
"preview": "ASTRO_TELEMETRY_DISABLED=1 astro preview",
"deploy": "npm run build && wrangler pages deploy dist --project-name=parentguidebook",
"astro": "astro",
"deploy-worker": "node scripts/deploy-worker.mjs",
"translate": "npx tsx scripts/translate.ts",
"fact-check": "npx tsx scripts/fact-check.ts",
"audit": "npx tsx scripts/audit.ts",
"content-lint": "npx tsx scripts/lint.ts",
"research": "npx tsx scripts/research.ts",
"pipeline": "npx tsx scripts/pipeline.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@astrojs/preact": "^3.5.4",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.16.3",
"preact": "^10.29.0",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"typescript": "^5.9.2",
"wrangler": "^4.0.0"
},
"engines": {
"node": ">=18"
}
}