1
0
mirror of https://github.com/rhysd/Mstdn.git synced 2024-11-28 20:24:10 +01:00
Mstdn/package.json
2017-08-31 19:49:43 +09:00

60 lines
1.8 KiB
JSON

{
"name": "mstdn",
"productName": "Mstdn",
"version": "0.2.6",
"description": "Tiny web-based mastodon client for your desktop",
"main": "main/index.js",
"bin": {
"open-mstdn-app": "./bin/cli.js"
},
"scripts": {
"build:ts": "tsc --pretty -p .",
"build:bundle": "NODE_ENV=development browserify -x electron renderer/index.js -o renderer/preload.js",
"build": "npm run build:ts && npm run build:bundle",
"build:bundle:release": "NODE_ENV=production browserify -x electron renderer/index.js -o renderer/preload.js",
"build:release": "npm run build:ts && npm run build:bundle:release",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json --type-check",
"watch": "guard --watchdir main renderer typings",
"debug": "NODE_ENV=development electron .",
"start": "NODE_ENV=production electron .",
"release": "npm run lint && ./scripts/make-release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysd/Mstdn.git"
},
"keywords": [
"mastodon",
"desktop",
"client",
"electron"
],
"author": "rhysd <lin90162@yahoo.co.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysd/Mstdn/issues"
},
"homepage": "https://github.com/rhysd/Mstdn#readme",
"devDependencies": {
"@types/electron-window-state": "^2.0.29",
"@types/loglevel": "^1.4.30",
"@types/menubar": "^5.1.4",
"@types/mousetrap": "^1.5.34",
"@types/node": "^8.0.26",
"browserify": "^14.4.0",
"electron-packager": "^9.0.0",
"npm-run-all": "^4.1.1",
"tslint": "^5.7.0",
"typescript": "^2.4.2"
},
"dependencies": {
"electron": "^1.7.5",
"electron-context-menu": "^0.9.1",
"electron-window-state": "^4.1.1",
"loglevel": "^1.4.1",
"menubar": "github:rhysd/menubar#mstdn",
"mousetrap": "^1.6.1"
}
}