-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.12 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
{
"name": "dsh-studio",
"private": true,
"version": "0.6.0",
"type": "module",
"description": "Native desktop studio for DeepSeek Harness — Linux/macOS/Windows, built with Rust + Tauri",
"keywords": [
"deepseek",
"deepseek-harness",
"dsh",
"tauri",
"rust",
"desktop",
"supervisor",
"cross-platform"
],
"homepage": "https://github.com/Moresyl/dsh-studio#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Moresyl/dsh-studio.git"
},
"bugs": {
"url": "https://github.com/Moresyl/dsh-studio/issues"
},
"author": "Moresyl",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write src media website packaging .github",
"test": "vitest run",
"test:release": "node .github/scripts/release-notes.mjs && cargo test --manifest-path src-tauri/Cargo.toml --workspace && pnpm lint && pnpm test && pnpm build",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.4.0",
"@tauri-apps/plugin-opener": "^2.5.0",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^26.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.8.3",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.30.2"
}