-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.09 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
{
"name": "differ",
"version": "0.1.0",
"description": "Local-first AI-native Git and GitHub review app",
"main": "dist/electron/main.js",
"private": true,
"scripts": {
"dev": "npm run build:electron && concurrently -k -n VITE,ELECTRON -c blue,magenta \"npm:dev:renderer\" \"npm:dev:electron\"",
"postinstall": "electron-rebuild -f -w better-sqlite3",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:5173 && cross-env NODE_ENV=development electron .",
"build": "npm run build:electron && npm run build:renderer",
"build:electron": "tsc -p tsconfig.electron.json",
"build:renderer": "vite build",
"start": "cross-env NODE_ENV=production electron .",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.electron.json --noEmit"
},
"dependencies": {
"@octokit/rest": "^20.1.2",
"@tanstack/react-query": "^5.101.0",
"@uiw/codemirror-extensions-langs": "^4.25.9",
"@uiw/codemirror-theme-github": "^4.25.9",
"@uiw/react-codemirror": "^4.25.9",
"better-sqlite3": "^11.5.0",
"dotenv": "^16.6.1",
"lucide-react": "^1.16.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-rebuild": "^3.2.9",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.61.0",
"vite": "^5.4.11",
"wait-on": "^8.0.1"
}
}