-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.93 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
{
"name": "sprites-docs-starlight",
"type": "module",
"version": "0.0.1",
"scripts": {
"generate:api": "npx tsx scripts/generate-api-docs.ts",
"generate:cli-docs": "tsx scripts/generate-cli-docs/index.ts",
"dev": "pnpm generate:api && astro dev",
"start": "pnpm generate:api && astro dev",
"build": "pnpm generate:api && astro build",
"preview": "astro preview",
"lint": "biome check",
"lint:fix": "biome check --write",
"astro": "astro",
"test:e2e": "start-server-and-test preview http://localhost:4321 cy:run",
"test:e2e:open": "start-server-and-test preview http://localhost:4321 cy:open",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/starlight": "^0.37.1",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"astro": "^5.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"motion": "^12.23.26",
"postprocessing": "^6.36.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"sharp": "^0.34.2",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"three": "^0.167.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@flydotio/dockerfile": "^0.7.10",
"cypress": "^15.8.1",
"start-server-and-test": "^2.1.3",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}