This repository has been archived by the owner on Jan 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
127 lines (127 loc) · 3.78 KB
/
package.json
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "napcat-webui",
"private": true,
"version": "0.0.6",
"type": "module",
"scripts": {
"webui:dev": "vite",
"webui:build": "tsc && vite build",
"webui:lint": "eslint -c eslint.config.mjs ./src/**/**/*.{ts,tsx} --fix",
"webui:preview": "vite preview",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"dependencies": {
"@monaco-editor/loader": "^1.4.0",
"@monaco-editor/react": "4.7.0-rc.0",
"@nextui-org/avatar": "^2.2.4",
"@nextui-org/breadcrumbs": "^2.2.4",
"@nextui-org/button": "2.2.7",
"@nextui-org/card": "^2.2.7",
"@nextui-org/checkbox": "^2.3.6",
"@nextui-org/chip": "^2.2.4",
"@nextui-org/code": "2.2.4",
"@nextui-org/dropdown": "^2.3.7",
"@nextui-org/form": "^2.1.7",
"@nextui-org/image": "^2.2.3",
"@nextui-org/input": "2.4.6",
"@nextui-org/kbd": "2.2.4",
"@nextui-org/link": "2.2.5",
"@nextui-org/listbox": "^2.3.7",
"@nextui-org/modal": "^2.2.5",
"@nextui-org/navbar": "2.2.5",
"@nextui-org/popover": "^2.3.7",
"@nextui-org/select": "^2.4.7",
"@nextui-org/slider": "^2.4.5",
"@nextui-org/snippet": "2.2.8",
"@nextui-org/spinner": "^2.2.4",
"@nextui-org/switch": "2.2.6",
"@nextui-org/system": "2.4.4",
"@nextui-org/tabs": "^2.2.5",
"@nextui-org/theme": "2.4.3",
"@nextui-org/tooltip": "^2.2.5",
"@react-aria/visually-hidden": "3.8.18",
"@reduxjs/toolkit": "^2.5.0",
"@uidotdev/usehooks": "^2.4.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"ahooks": "^3.8.4",
"axios": "^1.7.9",
"clsx": "2.1.1",
"echarts": "^5.5.1",
"event-source-polyfill": "^1.0.31",
"framer-motion": "^11.15.0",
"monaco-editor": "^0.52.2",
"motion": "^11.15.0",
"qface": "^1.4.1",
"qrcode.react": "^4.2.0",
"quill": "^2.0.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.4.0",
"react-redux": "^9.2.0",
"react-responsive": "^10.0.0",
"react-router-dom": "7.1.0",
"react-use-websocket": "^4.11.1",
"react-window": "^1.8.11",
"tailwind-variants": "0.3.0",
"tailwindcss": "3.4.17",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@react-types/shared": "^3.26.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/event-source-polyfill": "^1.0.5",
"@types/fabric": "^5.3.9",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.20",
"eslint": "^9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "8.4.49",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vite": "^6.0.5",
"vite-plugin-static-copy": "^2.2.0",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint"
]
},
"overrides": {
"ahooks": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-window": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}