-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.18 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
{
"name": "docs",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"deploy:cf": "pnpm build && wrangler deploy",
"test": "node --test tests/*.test.mjs",
"generate:og-image": "node ./scripts/generate-og-image.mjs",
"normalize:terminology": "node ./scripts/normalize-terminology.mjs",
"translate:faq-data": "node ./scripts/translate-faq-data.mjs",
"translate:new-locales": "node ./scripts/translate-locales.mjs --locales ja,ko,es,pt,fr,de --concurrency 2",
"astro": "astro",
"generate-types": "wrangler types",
"init:baseline:zh-cn": "node ./scripts/init-translation-baselines.mjs --locale zh-cn",
"init:baseline:ja": "node ./scripts/init-translation-baselines.mjs --locale ja",
"init:baseline:ko": "node ./scripts/init-translation-baselines.mjs --locale ko",
"init:baseline:es": "node ./scripts/init-translation-baselines.mjs --locale es",
"init:baseline:pt": "node ./scripts/init-translation-baselines.mjs --locale pt",
"init:baseline:fr": "node ./scripts/init-translation-baselines.mjs --locale fr",
"init:baseline:de": "node ./scripts/init-translation-baselines.mjs --locale de",
"translate:zh-cn": "node ./scripts/translate-deepseek.mjs --locale zh-cn",
"translate:ja": "node ./scripts/translate-deepseek.mjs --locale ja",
"translate:ko": "node ./scripts/translate-deepseek.mjs --locale ko",
"translate:es": "node ./scripts/translate-deepseek.mjs --locale es",
"translate:pt": "node ./scripts/translate-deepseek.mjs --locale pt",
"translate:fr": "node ./scripts/translate-deepseek.mjs --locale fr",
"translate:de": "node ./scripts/translate-deepseek.mjs --locale de",
"validate:i18n": "node ./scripts/validate-translations.mjs --locale zh-cn"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.7",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/starlight": "^0.38.2",
"@astrojs/starlight-tailwind": "^5.0.0",
"astro": "^6.1.3",
"sharp": "^0.34.5",
"starlight-utils": "^1.0.0",
"tailwindcss": "^4.1.18",
"wrangler": "^4.80.0"
},
"overrides": {
"vite": "^7"
}
}