forked from maddada/Ghostex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.92 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
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
{
"name": "ghostex",
"version": "5.5.0",
"private": true,
"description": "ghostex native macOS workarea and sessions UI.",
"type": "module",
"scripts": {
"s": "bun run start",
"start": "bun scripts/start-ghostex.mjs",
"gpui": "bun scripts/start-gpui.mjs",
"electron": "bun scripts/start-electron.mjs",
"build": "native/macos/ghostexHost/build-ghostex-host.sh",
"android:verify-release": "scripts/ghostex-android-release-readiness.sh",
"android:verify-release:local": "scripts/ghostex-android-release-readiness.sh --local",
"release:local": "node scripts/release-ghostex.mjs",
"release:preflight": "node scripts/release-preflight-fast.mjs",
"release:verify": "node scripts/release-final-verify.mjs",
"release:test": "vitest run --config vitest.release.config.ts",
"gxserver:remote-linux": "node gxserver-rs/package-remote-linux.mjs --arch all",
"gxserver:remote-linux:release": "scripts/build-remote-gxserver-linux-release.sh",
"gxserver:remote-linux:x64": "node gxserver-rs/package-remote-linux.mjs --arch x64",
"gxserver:remote-linux:arm64": "node gxserver-rs/package-remote-linux.mjs --arch arm64",
"tui:test": "scripts/ghostex-tui-test.sh",
"history": "cargo run --quiet --manifest-path ghostex-history/Cargo.toml --",
"history:list": "cargo run --quiet --manifest-path ghostex-history/Cargo.toml -- --list",
"build:sidebar-css": "tailwindcss -i sidebar/styles/shadcn.css -o sidebar/styles/shadcn.generated.css --minify",
"cli": "node scripts/ghostex-cli.mjs",
"storybook": "bun run build:sidebar-css && storybook dev -p 6006 --no-open -c sidebar/.storybook",
"build:storybook": "bun run build:sidebar-css && storybook build -c sidebar/.storybook",
"typecheck": "tsc --noEmit --pretty false",
"test": "vitest run"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@codemirror/commands": "6.8.1",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.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.3.4",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "6.11.3",
"@codemirror/state": "6.5.2",
"@codemirror/view": "6.36.4",
"@dnd-kit/abstract": "0.3.2",
"@dnd-kit/dom": "0.3.2",
"@dnd-kit/helpers": "0.3.2",
"@dnd-kit/react": "0.3.2",
"@excalidraw/excalidraw": "0.18.1",
"@fontsource-variable/inter": "^5.2.8",
"@lezer/highlight": "^1.2.3",
"@replit/codemirror-vim": "^6.3.0",
"@tabler/icons-react": "^3.40.0",
"@tanstack/react-hotkeys": "^0.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cron-parser": "^5.5.0",
"fuse.js": "^7.3.0",
"katex": "^0.16.28",
"lucide": "^0.564.0",
"lucide-react": "^0.561.0",
"monaco-editor": "^0.55.1",
"motion": "^12.38.0",
"portless": "0.14.0",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-best-gradient-color-picker": "^3.0.14",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.5.0",
"shiki": "^4.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"ws": "^8.20.0",
"zod": "^4.1.13",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@storybook/react-vite": "^10.3.5",
"@tailwindcss/cli": "^4.1.17",
"@types/node": "^25.5.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"babel-plugin-react-compiler": "^1.0.0",
"storybook": "^10.3.5",
"typescript": "~5.9.3",
"vite": "^8.0.10",
"vitest": "^3.2.4"
}
}