-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 833 Bytes
/
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
{
"name": "google-translate-electron",
"version": "1.0.0",
"description": "Open Google Translate at Desktop",
"main": "main.js",
"scripts": {
"start": "electron . > /dev/null&",
"gen-mac-app": "npx electron-packager . --platform=darwin --arch=x64 --out=$(pwd)/dist --overwrite --prune"
},
"build": {
"appId": "com.mfl.google_trans"
},
"repository": "https://github.com/laissonsilveira/google-translate-electron.git",
"keywords": [
"Electron",
"google",
"translate",
"tradutor",
"desktop"
],
"author": {
"name": "mafulong",
"email": "mafulong97@gmail.com",
"url": "https://mafulong.github.io"
},
"license": "UNLICENSED",
"devDependencies": {
"electron": "^23.3.13",
"electron-packager": "^17.1.2"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}