-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 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
{
"name": "session-manager",
"version": "0.2.1",
"description": "Unified AI Agent Session Manager",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-vite build && electron-builder --dir",
"dist": "electron-vite build && electron-builder"
},
"build": {
"appId": "com.sessionmanager.app",
"productName": "SessionManager",
"directories": {
"output": "dist"
},
"files": [
"out/**/*"
],
"asar": true,
"asarUnpack": [
"**/better-sqlite3/**",
"**/node-pty/**"
],
"mac": {
"icon": "build/icon.png",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": ["dmg"],
"category": "public.app-category.developer-tools",
"minimumSystemVersion": "12.0.0"
}
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-tooltip": "^1.2.8",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"better-sqlite3": "^11.9.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.39.0",
"lucide-react": "^1.16.0",
"node-pty": "^1.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-virtuoso": "^4.18.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.7",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.4.1",
"electron": "^36.2.1",
"electron-builder": "^26.11.0",
"electron-vite": "^3.1.0",
"tailwindcss": "^4.1.7",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"type": "commonjs"
}