-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·214 lines (214 loc) · 7.23 KB
/
package.json
File metadata and controls
executable file
·214 lines (214 loc) · 7.23 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"name": "aiko-mail",
"productName": "Aiko Mail",
"version": "4.b.0",
"description": "Aiko Mail - Email powered by AI",
"main": "build/Chiton/app.js",
"scripts": {
"start": "concurrently -k \"npm run veil:start\" \"npm run chiton:start\" \"npm run rosetta:start\" \"./node_modules/.bin/vue-devtools\"",
"win:start": "npx concurrently -k \"npm run win:veil:start\" \"npm run win:chiton:start\"",
"restart": "clear; npm run clean; npm run compile; npm start",
"win:restart": "cls; npm run compile; npm run win:start",
"restart:prod": "clear; npm run clean; npm run compile; npm run rosetta:make; npm run veil:make; npm run chiton:start:prod",
"win:restart:prod": "cls; npm run compile; npm run rosetta:make; npm run win:veil:make; npm run win:chiton:start:prod",
"compile": "tsc; tsc-alias; echo \"Compiled and added aliases.\"",
"clean": "rm -rf build",
"make": "npm run clean; npm run compile; npm run rosetta:make; npm run veil:make; npm run chiton:make",
"win:make": "npm run compile; npm run rosetta:make; npm run win:veil:make; npm run win:chiton:make",
"chiton:start": "cross-env NODE_ENV=dev electron-forge start",
"win:chiton:start": "export NODE_ENV=dev; npx electron-forge start",
"chiton:start:prod": "cross-env NODE_ENV=prod electron-forge start",
"win:chiton:start:prod": "export NODE_ENV=prod; npx electron-forge start",
"chiton:make": "electron-forge make",
"win:chiton:make": "npx electron-forge make --platform=win32",
"chiton:package": "electron-forge package",
"win:chiton:package": "npx electron-forge package",
"chiton:publish": "electron-forge publish",
"win:chiton:publish": "npx electron-forge publish",
"veil:start": "vite",
"win:veil:start": "npx vite",
"veil:make": "vite build",
"win:veil:make": "npx vite build",
"veil:preview": "vite preview --port 4173",
"win:veil:preview": "vite preview --port 4173",
"rosetta:start": "node rosetta-server.js",
"rosetta:make": "ts-node ./Veil/utils/rosetta/compile.ts"
},
"keywords": [
"email",
"ai",
"aiko"
],
"author": {
"name": "Mr. Seal 🦭",
"email": "say@helloaiko.com"
},
"license": "Proprietary, all rights reserved, no permissions granted.",
"config": {
"forge": {
"packagerConfig": {
"name": "Aiko Mail",
"executableName": "Aiko Mail",
"icon": "./public/assets/img/icon.icns",
"asar": true,
"appBundleId": "com.aiko.iris",
"usageDescription": {
"Microphone": "Aiko Mail requires microphone access for certain voice recognition based AI features."
},
"appCategoryType": "public.app-category.productivity",
"protocols": [
{
"name": "Aiko Mail Launch Protocol",
"schemes": [
"aiko-mail"
]
},
{
"name": "Mailto Protocol",
"schemes": [
"mailto"
]
}
],
"osxSign": {
"identity": "Developer ID Application: Aiko Mail Inc. (79J5DRPGF8)",
"hardened-runtime": true,
"hardenedRuntime": true,
"entitlements": "entitlements.plist",
"entitlements-inherit": "entitlements.plist",
"signature-flags": "library",
"gatekeeper-assess": false
},
"win32metadata": {
"CompanyName": "Aiko Mail Inc.",
"FileDescription": "Aiko Mail - Email powered by AI",
"OriginalFilename": "Aiko.Mail.exe"
},
"osxNotarize": {
"appBundleId": "com.aiko.iris",
"appleId": "priansh@helloaiko.com",
"appleIdPassword": "glhy-dtid-nssb-ffnk",
"ascProvider": "79J5DRPGF8"
},
"ignore": [
".*\\.md",
".*\\.MD",
".*\\.py",
"test-app.js",
"out/.*",
"\\.vscode/.*",
"\\.git/.*"
]
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "Aiko.Mail",
"authors": "Aiko Mail, Inc.",
"description": "Aiko Mail - Email powered by AI",
"setupIcon": "./public/assets/img/icon.ico",
"loadingGif": "./public/assets/img/loading.gif",
"noDelta": false,
"remoteReleases": "https://knidos.helloaiko.com"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"format": "ULFO",
"icon": "./public/assets/img/icon.icns",
"name": "Aiko Mail",
"background": "./public/assets/img/dragtoinstall.png"
}
}
],
"plugins": [
[
"@electron-forge/plugin-auto-unpack-natives"
]
]
}
},
"dependencies": {
"@aiko/dwarfhaven": "^2.1.0",
"@cliqz/adblocker-electron": "^1.20.2",
"@seald-io/nedb": "^3.0.0",
"@sentry/electron": "^2.0.4",
"@sentry/node": "^5.11.0",
"aikomail-sdk": "github:Aiko/mail-sdk",
"auto-bind": "^4.0.0",
"bootstrap-vue": "^2.22.0",
"cheerio": "^1.0.0-rc.3",
"colors": "^1.4.0",
"compromise": "^13.11.4",
"cross-fetch": "^3.0.6",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^4.3.5",
"emailjs-imap-client": "github:cuuupid/emailjs-imap-client",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"google-auth-library": "^5.5.1",
"googleapis": "^44.0.0",
"html-to-text": "^6.0.0",
"jdenticon": "^3.1.0",
"jquery": "^3.4.1",
"jsdom": "^16.4.0",
"jsonwebtoken": "^8.5.1",
"leveldown": "^5.6.0",
"linvodb3": "^3.26.0",
"lottie-web-vue": "^2.0.6",
"mailparser": "github:cuuupid/mailparser",
"node-abi": "^2.19.3",
"nodemailer": "^6.4.17",
"nodemailer-juice": "^1.0.1",
"nodemailer-plugin-inline-base64": "^2.1.1",
"planer": "^1.1.1",
"request": "^2.88.0",
"vue": "^3.2.38",
"vue-router": "^4.0.13",
"write-good": "^1.0.8",
"ws": "^7.2.5",
"yaml": "^2.1.3"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.50",
"@electron-forge/maker-deb": "6.0.0-beta.50",
"@electron-forge/maker-dmg": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "6.0.0-beta.50",
"@electron-forge/maker-squirrel": "^6.0.0-beta.50",
"@electron-forge/maker-zip": "6.0.0-beta.50",
"@electron-forge/plugin-auto-unpack-natives": "^6.0.0-beta.54",
"@electron-forge/plugin-webpack": "^6.0.0-beta.54",
"@electron-forge/publisher-github": "^6.0.0-beta.54",
"@electron/remote": "^2.0.8",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mime": "^3.0.1",
"@types/nedb": "^1.8.12",
"@types/nodemailer": "^6.4.4",
"@types/request": "^2.48.7",
"@types/write-good": "^1.0.1",
"@types/ws": "^7.4.7",
"@types/yaml": "^1.9.7",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/devtools": "^6.0.0-beta.21",
"@vue/tsconfig": "^0.1.3",
"chokidar": "^3.5.3",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"electron": "^20.0.0",
"tsc-alias": "^1.7.0",
"vite": "^3.0.9"
},
"bundleDependencies": [
"@aiko/dwarfhaven",
"yaml"
]
}