25 lines
961 B
JSON
25 lines
961 B
JSON
{
|
|
"name": "google-translate-electron",
|
|
"author": "mattuy<mattuylee@outlook.com>",
|
|
"version": "0.2.0",
|
|
"main": "./src/index.js",
|
|
"description": "Google Translate for Windows Desktop, built with Electron",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "electron .",
|
|
"package-win": "electron-packager ./ --overwrite --platform=win32 --arch=x64,ia32 --out ./bin --icon ./appicon.ico --app-copyright \"copyright@mattuy<mattuylee@outlook.com>\" --win32metadata.CompanyName=\"\"",
|
|
"package-linux": "electron-packager ./ --overwrite --platform=linux --arch=x64,ia32,arm64 --out ./bin --icon ./appicon.png"
|
|
},
|
|
"productName": "google-translate-electron",
|
|
"originalFilename": "google-translate-electron",
|
|
"dependencies": {
|
|
"lodash": "^4.17.15"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.155",
|
|
"electron": "^5.0.6",
|
|
"electron-packager": "^14.2.1",
|
|
"typescript": "^3.5.3"
|
|
}
|
|
}
|