-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (67 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (67 loc) · 1.45 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
{
"name": "pathbridge-mac",
"private": true,
"version": "1.2.0",
"main": "electron-main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:start": "electron .",
"electron:dev": "NODE_ENV=development electron .",
"dist": "vite build && electron-builder"
},
"dependencies": {
"@google/genai": "^1.34.0",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.18",
"electron": "^35.7.5",
"electron-builder": "^25.0.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^6.0.0"
},
"build": {
"appId": "com.pathbridge.app",
"productName": "PathBridge",
"files": [
"dist/**/*",
"electron-main.js",
"preload.js",
"public/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"target": ["dmg", "zip"],
"icon": "public/icon.png",
"extendInfo": {
"LSUIElement": true
}
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"directories": {
"output": "dist-desktop"
}
}
}