-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.06 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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "gopen",
"version": "1.0.0",
"description": "Open local files in Google Docs, Sheets, and Slides",
"main": "electron/main.js",
"scripts": {
"dev": "vite --strictPort",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently --kill-others-on-fail --names vite,electron --prefix-colors cyan,magenta \"npm run dev\" \"wait-on http://localhost:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 ELECTRON_ENABLE_LOGGING=1 electron .\"",
"electron:open-file": "cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron . --",
"icon:generate": "npx --yes icon-gen -i public/icon.svg -o build --icns --ico && mv -f build/app.icns build/icon.icns && mv -f build/app.ico build/icon.ico",
"electron:build": "npm run icon:generate && npm run build && electron-builder",
"electron:start": "electron ."
},
"keywords": [
"csv",
"google-sheets",
"google-workspace",
"productivity",
"electron"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.27",
"concurrently": "^8.0.0",
"cross-env": "^7.0.3",
"electron": "^35.0.0",
"electron-builder": "^25.0.0",
"postcss": "^8.5.9",
"tailwindcss": "^4.2.2",
"vite": "^6.2.3",
"wait-on": "^7.0.0"
},
"dependencies": {
"google-auth-library": "^9.0.0",
"googleapis": "^140.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"build": {
"appId": "com.gopen.app",
"productName": "GOpen",
"icon": "build/icon.icns",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.productivity",
"extendInfo": {
"LSUIElement": true
},
"target": [
"dmg",
"zip"
],
"fileAssociations": [
{
"ext": "csv",
"mimeType": "text/csv",
"role": "Editor"
},
{
"ext": "xlsx",
"mimeType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"role": "Editor"
},
{
"ext": "docx",
"mimeType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"role": "Editor"
},
{
"ext": "txt",
"mimeType": "text/plain",
"role": "Editor"
},
{
"ext": "pptx",
"mimeType": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
"role": "Editor"
}
]
},
"dmg": {
"title": "GOpen",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"dist/**/*",
"electron/**/*"
],
"extraResources": [
{
"from": "credentials.json",
"to": "credentials.json"
}
],
"directories": {
"buildResources": "build",
"output": "release"
}
}
}