1
0
mirror of https://github.com/rhysd/Mstdn.git synced 2024-12-03 00:24:10 +01:00
Mstdn/package.json

60 lines
1.9 KiB
JSON
Raw Normal View History

2017-04-15 07:06:14 +02:00
{
"name": "mstdn",
"productName": "Mstdn",
2017-04-24 18:29:07 +02:00
"version": "0.2.3",
2017-04-15 07:06:14 +02:00
"description": "Tiny web-based mastodon client for your desktop",
"main": "main/index.js",
"bin": {
"open-mstdn-app": "./bin/cli.js"
},
"scripts": {
2017-04-15 19:27:06 +02:00
"build:ts": "tsc --pretty -p .",
2017-04-25 10:37:10 +02:00
"build:bundle": "NODE_ENV=development browserify -x electron renderer/index.js -o renderer/preload.js",
2017-04-15 19:27:06 +02:00
"build": "npm run build:ts && npm run build:bundle",
2017-04-25 10:37:10 +02:00
"build:bundle:release": "NODE_ENV=production browserify -x electron renderer/index.js -o renderer/preload.js",
2017-04-15 19:27:06 +02:00
"build:release": "npm run build:ts && npm run build:bundle:release",
2017-04-15 07:11:41 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json --type-check $(git ls-files | grep -E \"\\.ts$\")",
"watch": "guard --watchdir main renderer typings",
"debug": "NODE_ENV=development electron .",
"start": "NODE_ENV=production electron .",
2017-04-16 06:20:28 +02:00
"release": "npm run lint && ./scripts/make-release.sh"
2017-04-15 07:06:14 +02:00
},
"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": "^1.4.37",
2017-04-15 07:06:14 +02:00
"@types/electron-window-state": "^2.0.28",
2017-04-15 09:32:44 +02:00
"@types/loglevel": "^1.4.29",
2017-04-17 09:54:26 +02:00
"@types/menubar": "^5.1.3",
2017-04-15 07:06:14 +02:00
"@types/mousetrap": "^1.5.33",
"@types/node": "^7.0.13",
2017-04-15 19:27:06 +02:00
"browserify": "^14.3.0",
2017-04-15 07:06:14 +02:00
"electron-packager": "^8.6.0",
"npm-run-all": "^4.0.2",
2017-04-15 07:11:41 +02:00
"tslint": "^5.1.0",
2017-04-15 07:06:14 +02:00
"typescript": "^2.2.2"
},
"dependencies": {
"electron": "^1.6.5",
2017-04-15 07:06:14 +02:00
"electron-window-state": "^4.1.1",
"loglevel": "^1.4.1",
2017-04-15 09:32:44 +02:00
"menubar": "github:rhysd/menubar#mstdn",
2017-04-15 07:06:14 +02:00
"mousetrap": "^1.6.1"
}
}