-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.29 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
{
"name": "ghostex",
"version": "4.10.0",
"private": true,
"description": "ghostex native macOS workarea and sessions UI.",
"type": "module",
"scripts": {
"s": "bun run start",
"start": "bun scripts/start-ghostex.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",
"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",
"@dnd-kit/abstract": "0.3.2",
"@dnd-kit/dom": "0.3.2",
"@dnd-kit/helpers": "0.3.2",
"@dnd-kit/react": "0.3.2",
"@fontsource-variable/inter": "^5.2.8",
"@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",
"lucide-react": "^0.561.0",
"monaco-editor": "^0.55.1",
"motion": "^12.38.0",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"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",
"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"
}
}