-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 5.01 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 5.01 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
113
114
{
"type": "module",
"name": "capgo-website",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"astro": "cd apps/web && bun run astro",
"dev": "bun run dev:web",
"dev:web": "cd apps/web && bun run dev",
"dev:docs": "cd apps/docs && bun run dev",
"start": "bun run dev:web",
"clean:build-cache": "rm -rf apps/web/dist apps/docs/dist apps/web/.astro apps/docs/.astro apps/web/.wrangler/deploy apps/docs/.wrangler/deploy",
"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",
"refresh:stars": "GITHUB_STATS_REFRESH=true bun run scripts/fetch-github-stars.ts",
"refresh:downloads": "NPM_DOWNLOADS_REFRESH=true bun run scripts/fetch-npm-downloads.ts",
"just:build": "bun run build",
"build:web": "cd apps/web && bun run build",
"build:docs": "cd apps/docs && bun run build",
"build": "bun run clean:build-cache && bun run build:docs && bun run build:web",
"build:after": "bun run repair_sitemap && bun run seo:check",
"ci:verify:web": "cd apps/web && bun run check && cd ../.. && bun run clean:build-cache && bun run build:web && bun run build:after",
"ci:verify:docs": "bun run check:docs-mirror && cd apps/docs && bun run check && cd ../.. && bun run build:docs",
"ci:verify:translation": "cd apps/translation-worker && bun run check",
"ci:verify:outrank": "cd apps/outrank-worker && bun run check",
"verify:real-translation": "cd apps/translation-worker && bun run test:real",
"check:docs-mirror": "bun run scripts/check-plugin-doc-mirrors.ts",
"check": "bun run check:docs-mirror && cd apps/web && bun run check && cd ../docs && bun run check && cd ../translation-worker && bun run check && cd ../outrank-worker && bun run 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:web": "cd apps/web && bun run preview",
"preview:docs": "cd apps/docs && bun run preview",
"preview:translation": "cd apps/translation-worker && bun run dev",
"deploy:web": "cd apps/web && bun run deploy",
"deploy:docs": "cd apps/docs && bun run deploy",
"deploy:translation": "cd apps/translation-worker && bun run deploy",
"deploy:outrank": "cd apps/outrank-worker && bun run deploy",
"deploy": "echo 'Refusing to deploy multiple workers together. Use bun run deploy:docs, bun run deploy:web, or bun run deploy:translation.' && exit 1",
"types": "bunx supabase gen types typescript --project-id=xvwzpoazmxkqosrdewyv > apps/web/src/services/supabase.types.ts",
"fmt": "prettier --write '**/*' --ignore-unknown",
"blogs:delete_broken_all": "bun run scripts/blogs/delete_broken_all.tsx",
"blogs:sync_seobot": "bun run scripts/blogs/sync_seobot.js",
"clean:unused": "bun run scripts/clean_not_used.tsx",
"generate:plugins-readme": "bun run scripts/generate-plugins-readme.ts"
},
"dependencies": {
"@astrojs/cloudflare": "13.5.1",
"@astrojs/sitemap": "3.7.2",
"@astrojs/starlight": "0.39.2",
"@astrojs/starlight-docsearch": "0.7.0",
"@astrojs/starlight-tailwind": "5.0.0",
"@std/semver": "npm:@jsr/std__semver@1.0.8",
"@supabase/supabase-js": "^2.105.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"astro": "6.3.3",
"astro-icon": "1.1.5",
"github-slugger": "^2.0.0",
"glob": "^13.0.6",
"marked": "^18.0.3",
"mermaid": "^11.15.0",
"node-forge": "^1.4.0",
"schema-dts": "^2.0.0",
"sitemap": "^9.0.1",
"starlight-image-zoom": "^0.14.1",
"starlight-llms-txt": "^0.9.0",
"starlight-package-managers": "^0.12.0",
"striptags": "^3.2.0",
"tailwindcss": "^4.3.0",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"@astrojs/check": "0.9.9",
"@astrojs/compiler-rs": "^0.2.0",
"@capgo/seo-checker": "^0.0.13",
"@cloudflare/vite-plugin": "1.36.4",
"@dotenvx/dotenvx": "^1.65.0",
"@iconify-json/carbon": "^1.2.21",
"@iconify-json/heroicons": "1.2.3",
"@iconify-json/twemoji": "^1.2.5",
"@types/bun": "^1.3.13",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^25.7.0",
"@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1",
"@types/toastify-js": "^1.12.4",
"astro-font": "^1.1.0",
"cheerio": "1.2.0",
"dayjs": "^1.11.20",
"faiss-node": "^0.5.1",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.8.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"linkify-it": "^5.0.0",
"nanospinner": "^1.2.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"seobot": "^1.4.0",
"typescript": "^6.0.3",
"vite-plugin-static-copy": "^4.1.0",
"wrangler": "4.90.1",
"zod": "^4.4.3"
}
}