-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.82 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.82 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
88
89
{
"name": "fancy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build:index": "ts-node src/scripts/build-registry-index.ts",
"build:source": "ts-node src/scripts/build-registry-sources.ts",
"build:docs": "ts-node src/scripts/build-docs-markdown.ts",
"build:llms": "ts-node src/scripts/build-llms-txt.ts",
"build:registry": "npm run build:index && npm run build:source",
"build:all": "npm run build:registry && npm run build:docs && npm run build:llms",
"build": "npm run build:registry && npm run build:docs && npm run build:llms && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@docsearch/react": "^3.9.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^16.0.7",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.3.1",
"@vercel/og": "^0.6.4",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"flubber": "^0.4.2",
"lenis": "^1.1.20",
"lodash": "^4.17.21",
"lucide-react": "^0.545.0",
"matter-js": "^0.20.0",
"mdast-util-toc": "^7.1.0",
"motion": "^12.23.24",
"next": "^16.0.7",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.4",
"poly-decomp": "^0.3.0",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-katex": "^3.1.0",
"react-wrap-balancer": "^1.1.1",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.13.2",
"remark": "^15.0.1",
"remark-math": "^6.0.0",
"svg-path-commander": "^2.1.6",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@tailwindcss/postcss": "^4.1.0",
"@types/flubber": "^0.4.0",
"@types/lodash": "^4.17.6",
"@types/matter-js": "^0.19.7",
"@types/node": "^20.14.10",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@types/react-katex": "^3.0.4",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"overrides": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9"
}
}