-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 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
{
"name": "tiginal",
"productName": "Tiginal",
"version": "0.1.0",
"description": "A cross-platform terminal emulator with SSH management and AI-powered command history",
"main": "dist/main/main/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:main\" \"npm run dev:renderer\"",
"dev:main": "tsc -p tsconfig.main.json --watch",
"dev:renderer": "vite",
"build": "npm run build:main && npm run build:renderer",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"start": "npm run build && electron .",
"rebuild": "electron-rebuild -f -w node-pty",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-rebuild"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@electron/rebuild": "^4.0.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.10.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"electron-rebuild": "^3.2.9",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.3.0",
"vite": "^7.3.1"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"argon2": "^0.44.0",
"better-sqlite3": "^12.6.0",
"cheerio": "^1.1.2",
"clsx": "^2.1.1",
"framer-motion": "^12.26.2",
"lucide-react": "^0.562.0",
"node-pty": "^1.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shell": "^0.12.0",
"tailwind-merge": "^3.4.0",
"tesseract.js": "^7.0.0"
}
}