2018-01-28 23:22:43 +11:00
|
|
|
{
|
2018-08-05 13:36:23 +10:00
|
|
|
"name": "thedesk",
|
2019-02-28 04:02:23 +11:00
|
|
|
"version": "17.0.2",
|
2018-08-05 13:36:23 +10:00
|
|
|
"description": "TheDesk is a Mastodon client for PC.",
|
2018-01-28 23:22:43 +11:00
|
|
|
"main": "main.js",
|
|
|
|
"scripts": {
|
2019-01-23 19:58:31 +11:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2019-01-25 13:41:48 +11:00
|
|
|
"dist": "build --linux snap",
|
2019-01-28 00:07:51 +11:00
|
|
|
"build:all": "electron-builder --win --linux",
|
|
|
|
"build:win": "electron-builder --win"
|
2018-01-28 23:22:43 +11:00
|
|
|
},
|
|
|
|
"keywords": [],
|
2018-08-10 01:18:35 +10:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/cutls/TheDesk/issues",
|
|
|
|
"email": "mstdn@thedesk.top"
|
2018-08-05 13:36:23 +10:00
|
|
|
},
|
2018-08-10 01:18:35 +10:00
|
|
|
"homepage": "https://thedesk.top",
|
|
|
|
"author": {
|
2018-08-05 13:36:23 +10:00
|
|
|
"name": "Cutls P",
|
2018-08-10 01:18:35 +10:00
|
|
|
"url": "https://kirishima.clooud/@Cutls",
|
|
|
|
"email": "web-pro@cutls.com"
|
2018-08-05 13:36:23 +10:00
|
|
|
},
|
2018-08-10 01:18:35 +10:00
|
|
|
"contributor": [
|
|
|
|
{
|
|
|
|
"name": "とねぢ",
|
|
|
|
"url": "https://minohdon.jp/@toneji",
|
|
|
|
"email": "solfa.tono@gmail.com"
|
2019-01-13 13:05:41 +11:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ぽぷんじゃ",
|
|
|
|
"url": "https://popon.pptdn.jp/@popn_ja",
|
|
|
|
"email": "popn.ja@gmail.com"
|
2018-08-10 01:18:35 +10:00
|
|
|
}
|
|
|
|
],
|
2019-01-24 03:04:21 +11:00
|
|
|
"license": "GPL-3.0",
|
2018-02-19 04:41:25 +11:00
|
|
|
"dependencies": {
|
2018-05-02 14:14:03 +10:00
|
|
|
"electron-dl": "^1.11.0",
|
2019-03-06 19:08:48 +11:00
|
|
|
"font-manager": "^0.3.0",
|
2018-04-01 00:55:47 +11:00
|
|
|
"jimp": "^0.2.28",
|
2018-07-19 02:05:53 +10:00
|
|
|
"node-notifier": "^5.2.1",
|
2019-03-06 19:08:48 +11:00
|
|
|
"nowplaying-node": "^0.1.3",
|
2018-07-19 02:05:53 +10:00
|
|
|
"sumchecker": "^2.0.2"
|
2018-05-20 17:15:35 +10:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2019-01-28 01:09:24 +11:00
|
|
|
"itunes-nowplaying-mac": "^0.2.3"
|
2018-09-10 03:06:00 +10:00
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"productName": "TheDesk",
|
|
|
|
"appId": "top.thedesk",
|
|
|
|
"directories": {
|
2018-12-09 05:46:01 +11:00
|
|
|
"output": "../build"
|
2018-09-10 03:06:00 +10:00
|
|
|
},
|
|
|
|
"win": {
|
|
|
|
"icon": "thedesk.ico",
|
|
|
|
"target": [
|
2018-09-14 02:25:43 +10:00
|
|
|
"nsis",
|
2019-03-04 16:49:25 +11:00
|
|
|
"portable",
|
|
|
|
"appx"
|
2018-09-10 03:06:00 +10:00
|
|
|
]
|
|
|
|
},
|
2019-01-28 20:39:16 +11:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"allowToChangeInstallationDirectory": true,
|
|
|
|
"artifactName": "TheDesk-setup.${ext}"
|
2019-01-28 03:54:20 +11:00
|
|
|
},
|
2018-09-10 03:06:00 +10:00
|
|
|
"linux": {
|
|
|
|
"icon": "build/icons",
|
|
|
|
"target": [
|
2019-01-23 20:03:11 +11:00
|
|
|
"snap"
|
2018-09-10 03:06:00 +10:00
|
|
|
],
|
|
|
|
"category": "Network"
|
|
|
|
},
|
2019-01-23 19:58:31 +11:00
|
|
|
"mac": {
|
2019-01-27 01:27:35 +11:00
|
|
|
"target": "dmg"
|
2019-01-23 19:58:31 +11:00
|
|
|
},
|
2018-09-14 02:25:43 +10:00
|
|
|
"electronDownload": {
|
2019-02-28 04:02:23 +11:00
|
|
|
"version": "4.0.5"
|
2018-09-10 03:06:00 +10:00
|
|
|
},
|
2019-02-28 04:02:23 +11:00
|
|
|
"electronVersion": "4.0.5"
|
2018-09-27 01:25:35 +10:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-02-27 12:17:35 +11:00
|
|
|
"electron": "^4.0.5",
|
2019-01-28 20:39:16 +11:00
|
|
|
"electron-packager": "^13.0.1",
|
|
|
|
"electron-prebuilt": "^1.4.13",
|
2019-02-27 03:51:37 +11:00
|
|
|
"electron-rebuild": "^1.8.4"
|
2018-01-28 23:22:43 +11:00
|
|
|
}
|
|
|
|
}
|