thedesk/app/package.json

130 lines
3.1 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-12-15 01:41:35 +11:00
"version": "20.1.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-08-26 01:09:01 +10:00
"construct": "cd view/make && node make --automatic && cd ../../",
2019-12-21 13:09:01 +11:00
"dev": "npx electron ./ --dev",
2019-01-25 13:41:48 +11:00
"dist": "build --linux snap",
2019-10-20 21:36:44 +11:00
"watchview": "node view/make/make.js --automatic --watch",
2019-05-27 00:40:03 +10:00
"build:js": "node build.js",
2019-12-21 13:09:01 +11:00
"build": "npx electron-builder",
"build:all": "npx electron-builder --win --linux",
"build:win": "npx 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": {
"@fortawesome/fontawesome-free": "^5.11.2",
2019-08-30 02:45:07 +10:00
"electron-dl": "^1.14.0",
"electron-window-state": "^5.0.3",
"jimp": "^0.9.1",
2019-06-22 01:22:45 +10:00
"jquery": "^3.4.1",
2019-08-30 02:45:07 +10:00
"jquery-ui-dist": "^1.12.1",
"json5": "^2.1.1",
2019-11-09 04:05:15 +11:00
"lodash": "^4.17.15",
"materialize-css": "git://github.com/cutls/materialize",
"sumchecker": "^3.0.1",
"sweetalert2": "^9.4.0",
"vue": "^2.6.10"
2018-05-20 17:15:35 +10:00
},
"optionalDependencies": {
"font-manager": "0.3.0",
2019-10-12 01:50:25 +11:00
"itunes-nowplaying-mac": "0.3.1"
2018-09-10 03:06:00 +10:00
},
2018-09-27 01:25:35 +10:00
"devDependencies": {
"chokidar": "^3.3.0",
2019-11-19 02:56:40 +11:00
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"electron-rebuild": "^1.8.8",
"readline-sync": "1.4.10"
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",
2019-10-11 02:04:31 +11:00
"snap",
2019-10-11 02:46:59 +11:00
"deb"
2019-05-27 00:40:03 +10:00
],
"category": "Network"
},
"mac": {
"target": [
"dmg",
"zip"
]
},
"electronDownload": {
2019-08-07 00:06:09 +10:00
"version": "6.0.0"
2019-05-27 00:40:03 +10:00
},
2019-08-07 00:06:09 +10:00
"electronVersion": "6.0.0"
2018-01-28 23:22:43 +11:00
}
}