Files
paperclip-wallet/package.json
Taegus 3fa90b2e48 + delete wallet data support
+ added fs-extra module
+ use copyFileSync
2019-01-29 15:13:58 +01:00

70 lines
1.5 KiB
JSON

{
"name": "Ether1Wallet",
"version": "0.2.5",
"description": "Desktop wallet for Ether1 currency",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "Ether1DesktopWallet",
"files": [
"modules/*",
"assets/**/*",
"renderer/*",
"package.json",
"main.js",
"index.html"
],
"win": {
"target": "7z",
"icon": "build/icon.png",
"artifactName": "Windows-${productName}-${version}.${ext}",
"extraResources": [
"bin/win/*"
]
},
"linux": {
"target": "tar.gz",
"icon": "build/icon.icns",
"artifactName": "Linux-${productName}-${version}.${ext}",
"extraResources": [
"bin/linux/*"
]
},
"mac": {
"target": "pkg",
"icon": "build/icon.icns",
"artifactName": "MacOS-${productName}-${version}.${ext}",
"extraResources": [
"bin/macos/*"
]
}
},
"repository": "https://github.com/taeguscromis/Ether1DesktopWallet",
"keywords": [
"Ether1",
"Desktop",
"Wallet"
],
"author": "Ether1",
"license": "CC0-1.0",
"dependencies": {
"adm-zip": "^0.4.13",
"app-root-path": "^2.1.0",
"electron-storage": "^1.0.7",
"fs-extra": "^7.0.1",
"handlebars": "^4.0.12",
"moment": "^2.23.0",
"nedb": "^1.8.0",
"open": "0.0.5",
"single-instance": "0.0.1"
},
"devDependencies": {
"electron": "^3.0.12",
"electron-builder": "^20.38.3"
}
}