thedesk/app/package.json

124 lines
2.9 KiB
JSON
Raw Normal View History

2018-01-28 23:22:43 +11:00
{
2018-08-05 13:36:23 +10:00
"name": "thedesk",
2019-07-13 01:01:16 +10:00
"version": "18.7.0",
2018-08-05 13:36:23 +10:00
"description": "TheDesk is a Mastodon client for PC.",
2019-04-14 02:42:49 +10:00
"repository": "https://github.com/cutls/TheDesk",
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-06-05 00:01:04 +10:00
"construct": "cd view/make && node make",
2019-06-16 02:08:10 +10:00
"dev": "electron ./ --dev",
2019-01-25 13:41:48 +11:00
"dist": "build --linux snap",
2019-05-27 00:40:03 +10:00
"build:js": "node build.js",
"build": "electron-builder",
"build:all": "electron-builder --win --linux",
"build:win": "electron-builder --win"
2018-01-28 23:22:43 +11:00
},
2019-05-19 18:01:15 +10:00
"keywords": [
"mastodon",
"client",
"electron",
"thedesk"
],
2018-08-10 01:18:35 +10:00
"bugs": {
"url": "https://github.com/cutls/TheDesk/issues",
2019-05-11 02:31:15 +10:00
"email": "web-pro@cutls.com"
2018-08-05 13:36:23 +10:00
},
2018-08-10 01:18:35 +10:00
"homepage": "https://thedesk.top",
"author": {
2019-03-16 03:59:29 +11:00
"name": "Cutls",
2019-05-11 02:31:15 +10:00
"url": "https://cutls.com/@Cutls",
2018-08-10 01:18:35 +10:00
"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"
2019-03-20 15:50:00 +11:00
},
{
"name": "kPherox",
2019-06-29 17:11:52 +10:00
"url": "https://pl.kpherox.dev/kPherox",
2019-03-20 15:50:00 +11:00
"email": "admin@mail.kr-kp.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": {
"electron-dl": "^1.14.0",
"jimp": "^0.6.4",
2019-06-22 01:22:45 +10:00
"jquery": "^3.4.1",
2019-03-08 05:19:26 +11:00
"json5": "^2.1.0",
"materialize-css": "^1.0.0",
"node-notifier": "^5.4.0",
"sumchecker": "^3.0.0",
"sweetalert2": "^8.13.0",
"vue": "^2.6.10"
2018-05-20 17:15:35 +10:00
},
"optionalDependencies": {
2019-05-06 20:30:05 +10:00
"nowplaying-node": "git+https://github.com/cutls/nowplaying-node",
"itunes-nowplaying-mac": "git+https://github.com/rinsuki/itunes-nowplaying-mac#pull/4/head",
2019-04-13 03:31:07 +10:00
"font-manager": "^0.3.0"
2018-09-10 03:06:00 +10:00
},
2018-09-27 01:25:35 +10:00
"devDependencies": {
"electron": "^5.0.4",
"electron-builder": "^20.44.4",
2019-06-05 00:01:04 +10:00
"readline-sync": "1.4.9"
2019-05-27 00:40:03 +10:00
},
"build": {
"productName": "TheDesk",
"appId": "top.thedesk",
"asarUnpack": [
"node_modules/itunes-nowplaying-mac"
],
"directories": {
"output": "../build"
},
"win": {
"icon": "build/thedesk.ico",
"target": [
"nsis",
"portable",
"appx"
]
},
"appx": {
"identityName": "53491Cutls.TheDesk",
"applicationId": "Cutls.TheDesk",
"publisherDisplayName": "Cutls",
"publisher": "CN=629757F5-A5EE-474F-9562-B304A89A9FD1",
"languages": [
"JA-JP",
"EN-US"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "TheDesk-setup.${ext}"
},
"linux": {
"icon": "build/icons",
"target": [
2019-06-14 01:53:19 +10:00
"zip",
"snap"
2019-05-27 00:40:03 +10:00
],
"category": "Network"
},
"mac": {
"target": [
"dmg",
"zip"
]
},
"electronDownload": {
"version": "5.0.1"
},
"electronVersion": "5.0.1"
2018-01-28 23:22:43 +11:00
}
}