-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.67 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "tsx scripts/build-search-index.ts && tsx scripts/build-llms.ts && tsx scripts/build-markdown.ts && tsx scripts/build-image-manifest.ts && tsx scripts/build-section-entries.ts",
"dev": "next dev",
"prebuild": "tsx scripts/build-search-index.ts && tsx scripts/build-llms.ts && tsx scripts/build-markdown.ts && tsx scripts/build-image-manifest.ts && tsx scripts/build-section-entries.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"search:index": "tsx scripts/build-search-index.ts",
"llms": "tsx scripts/build-llms.ts",
"md": "tsx scripts/build-markdown.ts",
"images": "tsx scripts/build-image-manifest.ts",
"sections": "tsx scripts/build-section-entries.ts",
"check:content": "tsx scripts/check-content.ts"
},
"dependencies": {
"clsx": "^2.1.1",
"flexsearch": "^0.7.43",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"next": "^15.1.0",
"next-mdx-remote": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"shiki": "^1.24.0",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"tsx": "^4.22.4",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0"
}
}