-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.32 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
{
"name": "code-manager",
"private": true,
"version": "1.5.0",
"description": "Code Manager - Claude Code 桌面配置管理应用",
"author": "maguowei",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maguowei/code-manager.git"
},
"homepage": "https://github.com/maguowei/code-manager",
"bugs": {
"url": "https://github.com/maguowei/code-manager/issues"
},
"packageManager": "pnpm@11.2.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"tauri": "tauri",
"lint": "biome lint .",
"format": "biome format --write .",
"fmt-check": "make fmt-check",
"fmt-rust-check": "make fmt-rust-check",
"check": "biome check --write .",
"biome:ci": "biome ci .",
"commitlint": "commitlint",
"prepare": "node -e \"const { spawnSync } = require('node:child_process'); const git = spawnSync('git', ['rev-parse', '--git-dir'], { stdio: 'ignore' }); if (git.status === 0) { const hook = spawnSync('lefthook', ['install', '--reset-hooks-path'], { stdio: 'inherit', shell: true }); process.exit(hook.status ?? 1); }\""
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.4",
"@codemirror/view": "^6.43.3",
"@hookform/resolvers": "^5.4.0",
"@lezer/highlight": "^1.2.3",
"@pierre/diffs": "1.2.11",
"@pierre/trees": "1.0.0-beta.4",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-virtual": "^3.14.4",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "2.7.1",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@uiw/codemirror-theme-xcode": "^4.25.10",
"@uiw/react-codemirror": "^4.25.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"github-markdown-css": "^5.9.0",
"lucide-react": "^1.21.0",
"radix-ui": "^1.6.0",
"react": "^19.2.7",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.11.2",
"react-syntax-highlighter": "^16.1.1",
"recharts": "3.9.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@tauri-apps/cli": "^2.11.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"jsdom": "^29.1.1",
"lefthook": "^2.1.9",
"typescript": "~7.0.2",
"vite": "^8.1.0",
"vitest": "^4.1.9"
}
}