-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.14 KB
/
package.json
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
{
"name": "hackdesk",
"description": "📝 A hackable HackMD desktop application",
"private": true,
"version": "0.0.7",
"type": "module",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"frontend:dev": "vite",
"frontend:build": "tsc && vite build",
"frontend:preview": "vite preview",
"lint:ts": "eslint . --ext ts,tsx --fix --cache",
"lint:rs": "cd src-tauri && cargo fmt && cargo clippy --fix --allow-dirty --allow-staged && cd -",
"lint": "npm run lint:ts && npm run lint:rs",
"release": "npx standard-version && git push --follow-tags",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "Michael Wang <[email protected]> (https://github.com/EastSun5566)",
"repository": {
"type": "git",
"url": "https://github.com/EastSun5566/hackdesk"
},
"license": "AGPL-3.0",
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dialog": "^1.0.5",
"@tauri-apps/api": "^1.5.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"lucide-react": "^0.291.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.6",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.5.2",
"vitepress": "1.0.0-rc.24"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.(ts|tsx)": "pnpm run lint:ts",
"*.rs": "pnpm run lint:rs"
}
}