-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.97 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
99
100
101
102
103
104
{
"name": "repohub",
"version": "0.1.0",
"description": "Desktop app for managing local repositories",
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"dist": "npm run build && electron-builder",
"install-app": "npm run dist && rm -rf /Applications/RepoHub.app && cp -R release/mac-arm64/RepoHub.app /Applications/RepoHub.app && echo '✓ RepoHub installed to /Applications'",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@tailwindcss/typography": "^0.5.19",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"chokidar": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"diff": "^8.0.3",
"electron-store": "^11.0.2",
"gray-matter": "^4.0.3",
"lucide-react": "^0.563.0",
"node-os-utils": "^2.0.3",
"node-pty": "^1.1.0",
"onnxruntime-node": "^1.24.1",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.22.0",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"vectra": "^0.12.3",
"web-tree-sitter": "^0.24.7",
"ws": "^8.19.0",
"zustand": "^5.0.11"
},
"build": {
"appId": "com.repohub.app",
"productName": "RepoHub",
"directories": {
"buildResources": "build",
"output": "release"
},
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.developer-tools",
"target": "dir",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"files": [
"out/**/*"
],
"asarUnpack": [
"node_modules/onnxruntime-node/**",
"node_modules/node-pty/**"
],
"extraResources": [
{
"from": "resources/tree-sitter-grammars",
"to": "tree-sitter-grammars"
}
],
"npmRebuild": true
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.1.18",
"@types/hast": "^3.0.4",
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/parser": "^8.55.0",
"@vitejs/plugin-react": "^5.1.3",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"electron-vite": "^5.0.0",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}