Files
devhub/packages/desktop/package.json
2019-05-06 07:35:09 -03:00

85 lines
2.2 KiB
JSON

{
"name": "@devhub/desktop",
"version": "0.90.0-beta.2",
"private": false,
"main": "dist/index.js",
"author": {
"name": "Bruno Lemos",
"email": "bruno@devhubapp.com",
"url": "https://twitter.com/brunolemos"
},
"description": "TweetDeck for GitHub",
"repository": "https://github.com/devhubapp/devhub",
"scripts": {
"build": "yarn build:base && yarn build:web && yarn build:web:post && yarn build:electron",
"build:base": "yarn clean && yarn compile",
"build:electron": "electron-builder",
"build:skipweb": "yarn build:base && yarn build:web:post && yarn build:electron",
"build:web": "pushd \"../web\" && yarn build && popd",
"build:web:post": "shx cp -Rf ../web/dist dist/web",
"clean": "shx rm -rf build && shx rm -rf dist",
"compile": "tsc -b",
"format": "prettier --write '{.,src/**}/*.{js,jsx,ts,tsx}'",
"lint": "tslint -p .",
"start": "nodemon --watch dist --watch assets --exec \"electron .\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.devhubapp",
"productName": "DevHub",
"extends": null,
"directories": {
"buildResources": "assets",
"output": "build"
},
"extraMetadata": {
"name": "devhub"
},
"linux": {
"icon": "icons/icon.png"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "icons/icon.png"
},
"win": {
"icon": "icons/icon.ico"
},
"files": [
"assets",
"dist"
],
"protocols": [
{
"name": "DevHub",
"schemes": [
"devhub"
]
}
],
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"dependencies": {
"electron-store": "2.0.0",
"electron-updater": "4.0.6",
"jsonfile": "5.0.0",
"mkdirp": "0.5.1"
},
"devDependencies": {
"@types/electron-devtools-installer": "2.2.0",
"@types/electron-store": "1.3.1",
"@types/jsonfile": "5.0.0",
"@types/mkdirp": "0.5.2",
"electron": "4.1.0",
"electron-builder": "20.39.0",
"electron-devtools-installer": "2.2.4",
"nodemon": "1.18.10",
"tslint": "5.14.0",
"typescript": "3.3.4000",
"wait-on": "3.2.0"
}
}