-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
92 lines (92 loc) · 2.44 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "meru",
"productName": "Meru",
"version": "3.0.0",
"private": true,
"description": "Nifty Gmail desktop app",
"author": "Tim Cheung <[email protected]>",
"repository": "timche/meru",
"main": "out/app.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "bun run scripts/build.ts --dev",
"build": "bun run scripts/build.ts",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"dist:window": "electron-builder --win"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@hookform/resolvers": "^4.1.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@tanstack/react-query": "^4.29.14",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/bun": "^1.2.3",
"@types/react-dom": "^19.0.4",
"bun-plugin-tailwind": "^0.0.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron": "^34.2.0",
"electron-builder": "^25.1.8",
"electron-trpc": "^0.7.1",
"lucide-react": "^0.475.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.7",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"zod": "^3.24.2"
},
"dependencies": {
"electron-store": "^10.0.1",
"electron-util": "^0.18.1"
},
"build": {
"files": [
"!scripts${/*}",
"!src${/*}",
"!biome.json",
"!bun.lock",
"!bunfig.toml",
"!tsconfig.json"
],
"appId": "dev.timche.meru",
"mac": {
"category": "public.app-category.productivity",
"darkModeSupport": true,
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
}
},
"linux": {
"target": [
"AppImage",
"deb"
],
"synopsis": "Nifty Gmail desktop app",
"description": "Meru is an unofficial and security focused Gmail app with many useful features.",
"category": "Network;Office"
},
"win": {
"verifyUpdateCodeSignature": false
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
}
}