-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 5.31 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 5.31 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "et3",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.4",
"engines": {
"bun": ">=1.3.0",
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zz-plant/ethotechnics.org.git"
},
"bugs": {
"url": "https://github.com/zz-plant/ethotechnics.org/issues"
},
"homepage": "https://ethotechnics.org",
"scripts": {
"dev": "bunx astro dev",
"start": "bunx astro dev",
"build": "bun run content:generate && bun run validate:json && bun run validate:glossary && bunx astro build && bun run patch:cf-worker",
"build:search": "bun run scripts/build-search.ts",
"build:search:crawl": "bun run scripts/build-search-crawl.ts",
"build:search:full": "echo 'See docs/ci-search-index.md for post-deploy index generation'",
"build:search:setup": "bunx playwright install chromium",
"preview": "bunx astro preview",
"preview:cf": "rm -f .wrangler/deploy/config.json && bunx wrangler dev --local --config dist/server/wrangler.json",
"deploy": "NODE_OPTIONS='--dns-result-order=ipv4first' bun run build && NODE_OPTIONS='--dns-result-order=ipv4first' bunx wrangler deploy --config dist/server/wrangler.json --no-assets",
"deploy:preview": "NODE_OPTIONS='--dns-result-order=ipv4first' bun run build && NODE_OPTIONS='--dns-result-order=ipv4first' bunx wrangler deploy --config dist/server/wrangler.json --env preview --no-assets",
"deploy:assets": "NODE_OPTIONS='--dns-result-order=ipv4first' bunx wrangler deploy --config dist/server/wrangler.json",
"patch:cf-worker": "bun run scripts/patch-cloudflare-worker-streaming.ts",
"types:cf": "bunx wrangler types",
"astro:check": "bunx astro check",
"typecheck": "bunx tsc --noEmit --project tsconfig.typecheck.json",
"lint": "bunx eslint \"src/**/*.{ts,tsx,astro}\"",
"lint:fix": "bunx eslint \"src/**/*.{ts,tsx,astro}\" --fix",
"check": "bun run assets:check && bun run agent:doctor && bun run content:check && bun run lint && bun run typecheck && bun run astro:check && bun run check:review-guardrails && bun run validate:json && bun run validate:glossary && bun run test:unit",
"check:full": "bun run check && bun run seo:audit && bun run test:unit:ci",
"format": "bunx prettier --write .",
"format:check": "bunx prettier --check .",
"clean": "rm -rf dist .astro coverage test-results playwright-report blob-report astro_check_log.txt",
"clean:all": "bun run clean && rm -rf node_modules .vercel playwright/.cache playwright/.auth",
"test:unit": "bun test src",
"test:unit:ci": "bun test src --coverage --coverage-reporter=lcov",
"test:e2e": "bun run build && bunx playwright test",
"test:e2e:smoke": "bun run build && bunx playwright test --project=chromium",
"test:e2e:ci": "bun run build && bunx playwright test --reporter=line",
"test:visual": "bunx playwright test --project=chromium --grep @visual",
"mcp": "bun run scripts/mcp-server.ts",
"validate:json": "bun run validate-json.ts",
"validate:glossary": "bun run validate-glossary.ts",
"agent:doctor": "bun run scripts/agent-doctor.ts",
"seo:audit": "bun run scripts/seo-audit.ts",
"setup:codex": "bash ./scripts/codex-setup.sh --yes",
"check:external-links": "bun run scripts/check-external-links.ts",
"check:heading-hierarchy": "bun run scripts/check-heading-hierarchy.ts",
"check:review-guardrails": "bun run scripts/check-review-guardrails.ts",
"check:review-guardrails:staged": "bun run scripts/check-review-guardrails.ts --staged",
"hooks:install": "bun run scripts/install-git-hooks.ts",
"content:generate": "bun run scripts/generate-content-derived.ts",
"content:check": "bun run scripts/generate-content-derived.ts --check",
"build:pages": "bun run build",
"deploy:cloudflare": "echo 'Cloudflare Pages handles deployment after a successful build; skipping explicit deploy step.'",
"prepare": "husky || true",
"check:production-edge": "bash scripts/check_production_edge.sh",
"assets:check": "bun run scripts/check-assets.ts",
"assets:generate": "bun run scripts/generate-scenes.ts"
},
"dependencies": {
"@astrojs/cloudflare": "13.6.0",
"@astrojs/mdx": "^5.0.6",
"@astrojs/react": "^5.0.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"@iconify-json/lucide": "^1.2.108",
"@modelcontextprotocol/sdk": "^1.29.0",
"@resvg/resvg-wasm": "^2.6.2",
"astro": "6.4.2",
"astro-icon": "1.1.5",
"astro-robots-txt": "1.0.0",
"astro-seo": "^1.1.0",
"pagefind": "1.4.0",
"@astrojs/react": "^5.0.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-dom": "^19.2.0",
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@cloudflare/workers-types": "^4.20250109.0",
"@eslint/js": "^10.0.1",
"@happy-dom/global-registrator": "^20.9.0",
"@playwright/test": "^1.60.0",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.14",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.9.1",
"eslint": "^10.4.0",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"happy-dom": "^20.9.0",
"jsdom": "^29.1.1",
"lightningcss": "^1.32.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"wrangler": "4.95.0",
"zod": "^4.4.3"
}
}