-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.36 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
{
"name": "ai-mail",
"version": "1.0.9",
"description": "AI-powered email personalization tool with Gmail and Google Sheets integration",
"main": "dist-electron/index.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:electron": "tsc -p tsconfig.node.json",
"preview": "vite preview",
"electron:dev": "vite",
"electron:build": "vite build && electron-builder"
},
"keywords": [
"electron",
"react",
"gmail",
"ai",
"email"
],
"repository": {
"type": "git",
"url": "https://github.com/DemocracyLab/ai-email.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"electron-store": "^10.0.0",
"google-auth-library": "^10.5.0",
"googleapis": "^131.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-quill": "^2.0.0",
"remark-gfm": "^4.0.1",
"url": "^0.11.4"
},
"devDependencies": {
"@types/electron-store": "^1.3.1",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.5",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.democracylab.aimail",
"productName": "AI Mail",
"publish": [
{
"provider": "github",
"owner": "DemocracyLab",
"repo": "ai-email"
}
],
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
}
}
}