Files
devhub/packages/desktop/package.json
Bruno Lemos ef6824e42d v0.43.0
2019-01-08 00:34:05 -02:00

85 lines
2.2 KiB
JSON

{
"name": "@devhub/desktop",
"version": "0.43.0",
"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.0",
"@types/jsonfile": "^5.0.0",
"@types/mkdirp": "^0.5.2",
"electron": "^4.0.0",
"electron-builder": "^20.38.3",
"electron-devtools-installer": "^2.2.4",
"nodemon": "^1.18.9",
"tslint": "^5.11.0",
"typescript": "^3.2.2",
"wait-on": "^3.2.0"
}
}