-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "simplyterm",
"version": "0.8.0",
"description": "A modern, fast, cross-platform terminal",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"version:bump": "node scripts/bump-version.mjs",
"version:check": "node scripts/bump-version.mjs"
},
"keywords": [
"terminal",
"ssh",
"sftp",
"tauri",
"rust",
"react"
],
"author": "Arediss",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arediss/SimplyTerm.git"
},
"bugs": {
"url": "https://github.com/arediss/SimplyTerm/issues"
},
"homepage": "https://github.com/arediss/SimplyTerm#readme",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tauri-apps/cli": "^2.10.0",
"@types/dompurify": "^3.0.5",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"terser": "^5.46.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"dompurify": "^3.3.1",
"i18next": "^25.8.0",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4"
}
}