generated from nisabmohd/Aria-Docs
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.91 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.91 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
{
"name": "@rocicorp/zero-docs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:search && npm run build:llms && next build",
"build:search": "tsx lib/generateSearchIndex.ts",
"build:llms": "npx --yes tsdown lib/generate-llms.ts --outDir dist --skipLibCheck && node dist/generate-llms.mjs",
"start": "npm run build:search && next start",
"format": "prettier --write **/*.{ts,tsx,js,json,md,mdx}",
"check-format": "prettier --check **/*.{ts,tsx,js,json,md,mdx}",
"check-types": "tsc",
"lint": "oxlint --type-aware --quiet",
"lint:next": "next lint",
"test": "vitest run",
"links": "blc http://localhost:3000/ -ro --exclude 'https://discord.rocicorp.dev/' --exclude 'https://bsky.app/profile/zero.rocicorp.dev' --exclude 'https://x.com/rocicorp_zero' --exclude 'https://x.com/zero__ms'"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.7",
"@rocicorp/zero": "^0.25.3",
"@shikijs/rehype": "^3.20.0",
"@shikijs/twoslash": "^3.20.0",
"@vercel/og": "^0.8.5",
"broken-link-checker": "^0.7.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.537.0",
"lunr": "^2.3.9",
"mdast-util-to-string": "^4.0.0",
"next": "^16.1.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hotkeys-hook": "^5.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"shiki": "^3.20.0",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0",
"use-debounce": "^10.1.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@rocicorp/prettier-config": "^0.3.0",
"@tailwindcss/typography": "^0.5.16",
"@types/hast": "^3.0.4",
"@types/lunr": "^2.3.7",
"@types/node": "^24.2.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "^15.4.6",
"oxlint": "^1.32.0",
"oxlint-tsgolint": "^0.8.3",
"postcss": "^8",
"prettier": "^3.7.4",
"react-highlight": "^0.15.0",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5",
"vitest": "^4.0.18"
}
}