thedesk/app/package.json

92 lines
2.9 KiB
JSON
Raw Normal View History

2018-01-28 23:22:43 +11:00
{
2020-05-23 14:54:51 +10:00
"name": "thedesk",
2021-04-15 14:00:29 +10:00
"version": "22.2.0",
2020-11-28 09:32:06 +11:00
"codename": "Koume",
2020-05-23 14:54:51 +10:00
"description": "TheDesk is a Mastodon client for PC.",
"repository": "https://github.com/cutls/TheDesk",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "run-s util:*",
2021-04-13 14:10:55 +10:00
"util:hash": "node gitHash.js",
"util:browserify": "browserify aiscript.js -o js/platform/aiscript.js",
"construct": "node view/make/makeCli.js",
"construct:store": "node view/make/makeCli.js --store",
"dev": "run-p dev:*",
"dev:run": "electron ./ --dev",
"dev:watchview": "node view/make/makeCli.js --watch",
"build": "node buildCli.js",
"build:pwa": "node view/make/makeCli.js --pwa",
"build:all:x64": "node buildCli.js --withStore",
"build:all": "node buildCli.js --withStore --withIa32 --withArm64",
2020-09-18 22:49:55 +10:00
"lint:fix": "eslint js --fix",
"lint": "eslint js"
2019-01-13 13:05:41 +11:00
},
2020-05-23 14:54:51 +10:00
"keywords": [
"mastodon",
"client",
"electron",
"thedesk"
2019-05-27 00:40:03 +10:00
],
2020-05-23 14:54:51 +10:00
"bugs": {
"url": "https://github.com/cutls/TheDesk/issues",
"email": "p@cutls.com"
2019-05-27 00:40:03 +10:00
},
2020-05-23 14:54:51 +10:00
"homepage": "https://thedesk.top",
"author": {
"name": "Cutls",
"url": "https://cutls.dev",
"email": "p@cutls.com"
2019-05-27 00:40:03 +10:00
},
2020-08-02 17:08:07 +10:00
"contributor": [
{
2020-05-23 14:54:51 +10:00
"name": "とねぢ",
"url": "https://minohdon.jp/@toneji",
"email": "solfa.tono@gmail.com"
},
{
"name": "ぽぷんじゃ",
"url": "https://popon.pptdn.jp/@popn_ja",
"email": "popn.ja@gmail.com"
},
{
"name": "kPherox",
"url": "https://pl.kpherox.dev/kPherox",
"email": "admin@mail.kr-kp.com"
}
],
"license": "GPL-3.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
2020-11-28 07:57:11 +11:00
"@syuilo/aiscript": "^0.11.1",
"electron-dl": "^3.2.1",
2021-04-15 15:26:21 +10:00
"itunes-nowplaying-mac": "https://github.com/cutls/itunes-nowplaying-mac/releases/download/v0.4.0/itunes-nowplaying-mac-0.4.0.tgz",
"jimp": "^0.16.1",
"jquery": "^3.6.0",
2020-05-23 14:54:51 +10:00
"jquery-ui-dist": "^1.12.1",
"json5": "^2.2.0",
"lodash": "^4.17.21",
2020-05-23 14:54:51 +10:00
"materialize-css": "git://github.com/cutls/materialize#v1-dev",
"sanitize-html": "^2.3.2",
2020-05-23 14:54:51 +10:00
"sumchecker": "^3.0.1",
"sweetalert2": "^10.15.7",
2020-05-23 14:54:51 +10:00
"system-font-families": "^0.4.1",
"vue": "^2.6.12"
2019-05-27 00:40:03 +10:00
},
2020-05-23 14:54:51 +10:00
"devDependencies": {
2020-11-28 07:57:11 +11:00
"browserify": "^17.0.0",
"chokidar": "^3.5.1",
"dotenv": "^8.2.0",
"electron": "^12.0.2",
"electron-builder": "^22.10.5",
"electron-notarize": "^1.0.0",
"electron-rebuild": "^2.3.5",
"eslint": "^7.23.0",
"npm-run-all": "^4.1.5",
2021-04-15 15:26:21 +10:00
"readline-sync": "1.4.10"
2019-05-27 00:40:03 +10:00
},
"resolutions": {
"@types/fs-extra": "9.0.11"
2020-05-23 14:54:51 +10:00
}
2020-08-02 17:08:07 +10:00
}