-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.72 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.72 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
{
"name": "docs-v2",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "bunx --bun astro dev",
"build": "bunx --bun astro build && npx pagefind --site dist",
"preview": "bunx --bun astro preview --port 4322",
"astro": "bunx --bun astro",
"check": "bun run --parallel check:format check:lint check:type check:writing check:link",
"check:format": "bun run --parallel check:format:oxfmt check:format:biome",
"check:format:oxfmt": "bunx --bun oxfmt --check .",
"check:format:biome": "bunx --bun @biomejs/biome format",
"check:lint": "bun run --parallel check:lint:oxlint check:lint:biome",
"check:lint:oxlint": "bunx --bun oxlint",
"check:lint:biome": "bunx --bun @biomejs/biome lint",
"check:type": "bun --bun astro check",
"check:link": "bun run scripts/check-broken-links.ts",
"check:writing": "scripts/check-vale.sh src/content/docs/",
"fix": "bun run --sequential fix:format fix:lint",
"fix:format": "bun run --sequential fix:format:oxfmt fix:format:biome",
"fix:format:oxfmt": "bunx --bun oxfmt .",
"fix:format:biome": "bunx --bun @biomejs/biome format --write",
"fix:lint": "bun run --sequential fix:lint:oxlint fix:lint:biome",
"fix:lint:oxlint": "bunx --bun oxlint --fix",
"fix:lint:biome": "bunx --bun @biomejs/biome lint --write",
"prepare": "lefthook install"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@astrojs/mdx": "^5.0.3",
"@astrojs/react": "^5.0.2",
"@astrojs/sitemap": "^3.7.2",
"@base-ui/react": "^1.3.0",
"@botpress/webchat": "^4.5.1",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@nanostores/react": "^1.1.0",
"@pagefind/default-ui": "^1.4.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"nanostores": "^1.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-resizable-panels": "^4.11.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.2.0",
"shiki": "^4.0.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@biomejs/biome": "2.4.13",
"@botpress/api": "^1.86.0",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"lefthook": "^2.1.4",
"oxfmt": "^0.43.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.19.0",
"typescript": "^6.0.2"
}
}