-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.16 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
{
"name": "nautilus",
"version": "1.0.0",
"description": "Simple Server Manager application built with Tauri.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start:backend": "cd backend && npm start",
"tauri": "tauri",
"tauri:dev": "npm run build:backend && tauri dev",
"tauri:build": "npm run build:backend && tauri build",
"build:backend": "cd backend && npm install && npm run build"
},
"overrides": {
"cpu-features": "npm:empty-npm-package@1.0.0"
},
"keywords": [
"tauri",
"ssh",
"sftp",
"server-manager"
],
"author": "",
"license": "ISC",
"dependencies": {
"@ant-design/cssinjs": "^2.0.1",
"@ant-design/icons": "^6.1.0",
"@ant-design/pro-components": "^2.8.10",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-shell": "^2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@uiw/react-codemirror": "^4.25.4",
"@vitejs/plugin-react": "^5.1.2",
"antd": "^5.29.2",
"chart.js": "^4.4.2",
"dayjs": "^1.11.19",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"monaco-editor": "^0.47.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-i18next": "^16.5.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.6",
"@types/node": "^25.0.2",
"autoprefixer": "^10.4.22",
"cross-env": "^7.0.3",
"postcss": "^8.5.6",
"typescript": "^5.9.3",
"vite": "^5.4.21"
}
}