-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "orbisdeck",
"version": "0.7.0",
"description": "OrbisDeck — project command center: a macOS desktop app for managing multiple Claude Code projects",
"author": "Alexander Kurach",
"license": "GPL-3.0-only",
"private": true,
"type": "module",
"scripts": {
"tauri": "tauri",
"dev": "tauri dev",
"dev:web": "vite",
"build": "tauri build",
"build:web": "vite build",
"preview:web": "vite preview",
"typecheck": "tsc --noEmit -p tsconfig.web.json",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"d3-force": "^3.0.0",
"dompurify": "^3.4.11",
"highlight.js": "^11.11.1",
"marked": "^18.0.5"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.3",
"@types/d3-force": "^3.0.10",
"@types/node": "^20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.4"
}
}