-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 4.05 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 4.05 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
{
"type": "module",
"name": "capgo-website",
"scripts": {
"postinstall": "node scripts/patch-astro-rolldown.js",
"astro": "astro",
"dev": "bun run fix_code_languages_all && astro dev",
"start": "astro dev",
"repair_sitemap": "bun run scripts/repair_sitemap.tsx",
"fetch:stars": "bun run scripts/fetch-github-stars.ts",
"fetch:downloads": "bun run scripts/fetch-npm-downloads.ts",
"just:build": "export NODE_OPTIONS='--max-old-space-size=8192' UV_THREADPOOL_SIZE=16; astro build",
"generate:plugins-readme": "bun run scripts/generate-plugins-readme.ts",
"build": "export NODE_OPTIONS='--max-old-space-size=8192' UV_THREADPOOL_SIZE=16; astro build",
"build:prepare": "bun run fetch:stars && bun run fetch:downloads && bun run generate:plugins-readme && bun run fix_code_languages_all",
"build:after": "bun run repair_sitemap && bun run seo:check",
"seo:check": "seo-checker --output github",
"seo:check:json": "seo-checker --output json",
"seo:check:report": "seo-checker --report seo-report.txt",
"seo:check:local": "seo-checker",
"seo:generate-config": "seo-checker --generate-config",
"preview": "wrangler dev",
"types": "npx --yes supabase gen types typescript --project-id=xvwzpoazmxkqosrdewyv > src/services/supabase.types.ts",
"fmt": "prettier --write '**/*' --ignore-unknown",
"blogs:translate_all": "bun run scripts/blogs/translate_all.tsx",
"blogs:translate_untranslated": "bun run scripts/blogs/translate_untranslated.tsx",
"blogs:fix_locales_all": "bun run scripts/blogs/fix_locales_all.tsx",
"blogs:remove_mismatching_locales": "bun run scripts/blogs/remove_mismatching_locales.tsx",
"blogs:delete_broken_all": "bun run scripts/blogs/delete_broken_all.tsx",
"blogs:sync_seobot": "bun run scripts/blogs/sync_seobot.js",
"fix_code_languages_all": "bun run scripts/fix_code_languages_all.tsx",
"docs:translate_all": "bun run scripts/generate_docs_translations.tsx",
"plugins:translate_all": "bun run scripts/generate_plugin_translations.tsx",
"setup:new:locale": "bun run scripts/setup_new_locale.tsx",
"clean:unused": "bun run scripts/clean_not_used.tsx"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/starlight": "^0.37.1",
"@astrojs/starlight-tailwind": "^4.0.2",
"@orama/wc-components": "^0.8.1",
"@std/semver": "npm:@jsr/std__semver@1.0.6",
"@supabase/supabase-js": "^2.89.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.16.6",
"astro-embed": "^0.9.2",
"astro-heroicons": "^2.1.5-1",
"astro-i18n-aut": "^0.7.3",
"github-slugger": "^2.0.0",
"glob": "^13.0.0",
"mermaid": "^11.12.2",
"openai": "^6.15.0",
"sitemap": "^9.0.0",
"starlight-image-zoom": "^0.13.2",
"starlight-llms-txt": "^0.6.0",
"starlight-package-managers": "^0.11.1",
"striptags": "^3.2.0",
"tailwindcss": "^4.1.18",
"toastify-js": "^1.12.0"
},
"overrides": {
"vite": "npm:rolldown-vite@7.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@dotenvx/dotenvx": "^1.51.4",
"@iconify-json/carbon": "^1.2.15",
"@iconify-json/twemoji": "^1.2.5",
"@inlang/cli": "^3.0.12",
"@inlang/paraglide-js": "2.7.1",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^24.10.4",
"@types/semver": "^7.7.1",
"@types/toastify-js": "^1.12.4",
"astro-font": "^1.1.0",
"@capgo/seo-checker": "^0.0.1",
"cheerio": "1.1.2",
"dayjs": "^1.11.19",
"faiss-node": "^0.5.1",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.3.3",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"langchain": "^0.3.37",
"linkify-it": "^5.0.0",
"nanospinner": "^1.2.2",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"seobot": "^1.4.0",
"typescript": "^5.9.3",
"vite-plugin-static-copy": "^3.1.4",
"wrangler": "^4.54.0",
"zod": "^3.25.76"
}
}