-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.28 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.28 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
{
"name": "repo-viewer",
"private": true,
"version": "1.4.0",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "vite",
"build": "tsc -p scripts/tsconfig.json && node scripts/dist/generateInitialContent.js && node scripts/dist/generateDocfindIndex.js && tsc && vite build",
"generate:index": "tsc -p scripts/tsconfig.json && node scripts/dist/generateDocfindIndex.js",
"install-deps": "npm install",
"lint": "eslint . --ext ts,tsx",
"preview": "vite preview"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.2.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^24.10.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-virtualized-auto-sizer": "^1.0.8",
"@types/react-window": "^1.8.8",
"@vercel/node": "^5.6.6",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.24",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "npm:rolldown-vite@^7.3.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"@types/katex": "^0.16.8",
"@types/prismjs": "^1.26.6",
"axios": "^1.13.5",
"dotenv": "^17.3.1",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"framer-motion": "^12.34.2",
"github-markdown-css": "^5.9.0",
"jszip": "^3.10.1",
"katex": "^0.16.28",
"notistack": "^3.0.2",
"pinyin-pro": "^3.28.0",
"prismjs": "^1.30.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-helmet-async": "^2.0.5",
"react-markdown": "^10.1.0",
"react-use": "^17.6.0",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^2.2.7",
"react-zoom-pan-pinch": "^3.7.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"rolldown-vite": "^7.3.1",
"zod": "^4.3.6"
},
"overrides": {
"react-helmet-async": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}
}