-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"name": "open-physica",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "next experimental-analyze --output",
"start": "next start",
"types:check": "fumadocs-mdx && tsc --noEmit",
"lint": "fumadocs-mdx && eslint .",
"lint:fix": "fumadocs-mdx && eslint . --fix",
"format": "fumadocs-mdx && prettier --write .",
"format:check": "fumadocs-mdx && prettier --check .",
"check": "bun run types:check && bun run lint && bun run format:check",
"fix": "bun run lint:fix && bun run format"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@mdx-js/mdx": "^3.1.1",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"fumadocs-core": "^16.7.11",
"fumadocs-mdx": "^14.2.11",
"fumadocs-ui": "npm:@fumadocs/base-ui@latest",
"katex": "^0.16.45",
"lucide-react": "^0.561.0",
"mermaid": "^11.14.0",
"next": "^16.2.3",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rehype-katex": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/json": "^0.14.0",
"eslint": "^9.39.4",
"@tailwindcss/postcss": "^4.2.2",
"@types/bun": "^1.3.12",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint-config-next": "^16.2.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.7.0",
"postcss": "^8.5.9",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-markdown-style-guide": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"remark-preset-prettier": "^2.0.2",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"unist-util-visit": "^5.1.0"
}
}