{
  "name": "flash-clipboard",
  "productName": "Flash Clipboard",
  "author": "Jerrygoyal",
  "license": "ISC",
  "version": "0.1.0",
  "description": "Maintains a list of recently copied text which can be pasted later quickly using a key shortcut",
  "homepage": "https://github.com/JerryGoyal/Flash-Clipboard",
  "main": "main.js",
  "keywords": [
    "desktop",
    "electron",
    "electron-app",
    "clipboard",
    "multi copy paste",
    "Flash Clipboard",
    "mac",
    "windows",
    "linux",
    "software"
  ],
  "scripts": {
    "start": "./node_modules/.bin/electron ./main.js",
    "pack": "electron-builder --dir",
    "dist": "electron-builder",
    "postinstall": "electron-builder install-app-deps",
    "publish": "node_modules/.bin/build -p always"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/JerryGoyal/Flash-Clipboard.git"
  },
  "build": {
    "productName": "Flash Clipboard",
    "copyright": "Copyright © 2018 Jerrygoyal",
    "appId": "com.electron.flashclipboard",
    "win": {
      "icon": "./img/flashclipboard.ico",
      "publisherName": "Jerrygoyal",
      "certificateFile": "selfsigncert.pfx",
      "publish": [
        "github"
      ]
    },
    "mac": {
      "category": "public.app-category.productivity"
    },
    "nsis": {
      "runAfterFinish": true,
      "createDesktopShortcut": true,
      "deleteAppDataOnUninstall": true,
      "include": "./build/installer.nsh"
    }
  },
  "dependencies": {
    "electron-json-storage": "^4.1.2",
    "electron-log": "^2.2.17",
    "electron-updater": "^3.1.2",
    "robotjs": "^0.5.1"
  },
  "devDependencies": {
    "electron": "^2.0.10",
    "electron-builder": "^20.28.4"
  }
}