-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
package.json
103 lines (103 loc) · 3.3 KB
/
package.json
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
{
"name": "cloudflare-docs-starlight",
"private": true,
"type": "module",
"scripts": {
"astro": "npx astro",
"build": "npx astro build",
"postbuild": "npm run build:worker",
"build:worker": "npx wrangler types -c wrangler-workers.toml --experimental-include-runtime && npx wrangler pages functions build --outdir worker/functions",
"check": "npm run check:functions && npm run check:astro",
"check:astro": "npm run sync && astro check",
"check:functions": "npx tsc --noEmit -p ./functions/tsconfig.json",
"check:worker": "npx tsc --noEmit -p ./worker/tsconfig.json",
"dev": "npx astro dev",
"format": "npm run format:core && npm run format:data",
"format:core": "npx prettier --write \"**/*.{js,jsx,ts,tsx,mjs,css}\"",
"format:core:check": "npm run format:core -- --check",
"format:content": "npx prettier --write \"**/*.{md,mdx,astro}\"",
"format:data": "npx prettier --write \"**/*.{json,yaml,yml}\"",
"postinstall": "npx patch-package && npm run sync",
"preview": "npx astro preview",
"script:optimize-svgs": "npx tsx scripts/optimize-svgs.ts",
"start": "npx astro dev",
"sync": "npx astro sync",
"test": "npx vitest"
},
"devDependencies": {
"@astro-community/astro-embed-youtube": "^0.5.6",
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/starlight": "^0.28.3",
"@astrojs/starlight-docsearch": "^0.2.0",
"@astrojs/starlight-tailwind": "^2.0.3",
"@astrojs/tailwind": "^5.1.2",
"@cloudflare/puppeteer": "^0.0.14",
"@cloudflare/vitest-pool-workers": "^0.5.27",
"@cloudflare/workers-types": "^4.20241112.0",
"@codingheads/sticky-header": "^1.0.2",
"@iconify-json/material-symbols": "^1.2.6",
"@stoplight/json-schema-tree": "^4.0.0",
"@types/dompurify": "^3.0.5",
"@types/hast": "^3.0.4",
"@types/he": "^1.2.3",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"algoliasearch": "^5.13.0",
"astro": "^4.16.12",
"astro-breadcrumbs": "^3.2.0",
"astro-icon": "^1.1.2",
"astro-live-code": "^0.0.4",
"date-fns": "^4.1.0",
"detype": "1.0.12",
"dompurify": "3.1.6",
"dot-prop": "^9.0.0",
"fast-glob": "^3.3.2",
"github-slugger": "^2.0.0",
"hastscript": "^9.0.0",
"he": "^1.2.0",
"instantsearch.css": "^8.5.1",
"instantsearch.js": "^4.75.4",
"lz-string": "^1.5.0",
"marked": "^14.1.3",
"mdast-util-mdx-expression": "^2.0.1",
"mermaid": "^11.4.0",
"node-html-parser": "^6.1.13",
"patch-package": "^8.0.0",
"playwright": "^1.48.2",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"puppeteer": "^23.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-textarea-autosize": "^8.5.5",
"redirects-in-workers": "^0.0.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-mermaid": "^3.0.0",
"rehype-title-figure": "^0.1.2",
"sharp": "^0.33.5",
"solarflare-theme": "^0.0.2",
"starlight-image-zoom": "^0.9.0",
"starlight-links-validator": "^0.13.2",
"starlight-package-managers": "^0.8.0",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.14",
"tippy.js": "^6.3.7",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"unist-util-visit": "^5.0.0",
"vitest": "2.1.5",
"wrangler": "^3.87.0",
"yaml": "^2.6.0"
},
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.9.0"
}
}