2018-03-07 14:28:48 +01:00
|
|
|
{
|
2018-03-26 11:25:44 +02:00
|
|
|
"name": "Whalebird",
|
2020-06-10 16:44:12 +02:00
|
|
|
"version": "4.1.3",
|
2018-03-07 14:28:48 +01:00
|
|
|
"author": "AkiraFukushima <h3.poteto@gmail.com>",
|
2018-07-14 15:58:43 +02:00
|
|
|
"description": "An Electron based Mastodon client for Windows, Mac and Linux",
|
2018-03-22 08:55:58 +01:00
|
|
|
"license": "MIT",
|
2018-07-14 15:58:43 +02:00
|
|
|
"keywords": [
|
|
|
|
"mastodon",
|
|
|
|
"client",
|
|
|
|
"electron",
|
|
|
|
"vue"
|
|
|
|
],
|
2018-03-22 08:55:58 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/h3poteto/whalebird-desktop.git"
|
|
|
|
},
|
2018-03-30 17:40:43 +02:00
|
|
|
"config": {
|
2020-06-15 16:20:40 +02:00
|
|
|
"buildVersion": "98",
|
2020-06-10 16:44:12 +02:00
|
|
|
"appVersion": "4.1.3"
|
2018-03-30 17:40:43 +02:00
|
|
|
},
|
2018-03-07 14:28:48 +01:00
|
|
|
"main": "./dist/electron/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "node .electron-vue/dev-runner.js",
|
2019-04-03 15:15:46 +02:00
|
|
|
"lint": "eslint --ext .js,.vue,.ts -f ./node_modules/eslint-friendly-formatter src spec",
|
2019-07-08 15:32:48 +02:00
|
|
|
"lint:fix": "eslint --ext .js,.vue,.ts -f ./node_modules/eslint-friendly-formatter --fix src spec",
|
2018-07-05 15:33:51 +02:00
|
|
|
"stylelint": "stylelint '**/*.vue' --syntax scss",
|
2019-04-24 14:25:11 +02:00
|
|
|
"build": "node .electron-vue/build.js",
|
|
|
|
"build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js",
|
|
|
|
"build:web": "cross-env BUILD_TARGET=web node .electron-vue/build.js",
|
|
|
|
"build:mac": "npm run build && npm run package:mac",
|
|
|
|
"build:linux": "npm run build && npm run package:linux",
|
|
|
|
"build:win32": "npm run build && npm run package:win32",
|
|
|
|
"build:win64": "npm run build && npm run package:win64",
|
2020-06-10 16:45:20 +02:00
|
|
|
"build:mas": "npm run build:clean && npm run pack && electron-packager ./ 'Whalebird' --platform=mas --arch=x64 --electron-version=9.0.3 --asar.unpackDir='build/sounds' --out=packages --ignore='^/src' --ignore='^/.electron-vue' --ignore='^/.envrc' --ignore='^/packages' --ignore='^/plist' --ignore='^/static' --ignore='^/whalebird.db' --ignore='^/screenshot.png' --prune=true --icon=./build/icons/icon.icns --overwrite --app-bundle-id=org.whalebird.desktop --app-version=$npm_package_config_appVersion --build-version=$npm_package_config_buildVersion --extend-info='./plist/team.plist' --osx-sign --app-category-type=public.app-category.social-networking",
|
2019-04-24 14:25:11 +02:00
|
|
|
"package:mac": "electron-builder --mac --x64",
|
|
|
|
"package:linux": "electron-builder --linux",
|
|
|
|
"package:win32": "electron-builder --win --ia32",
|
|
|
|
"package:win64": "electron-builder --win --x64",
|
2018-03-07 14:28:48 +01:00
|
|
|
"pack": "npm run pack:main && npm run pack:renderer",
|
2018-11-14 14:52:34 +01:00
|
|
|
"pack:main": "cross-env NODE_ENV=production webpack --mode production --progress --colors --config .electron-vue/webpack.main.config.js",
|
|
|
|
"pack:renderer": "cross-env NODE_ENV=production webpack --mode production --progress --colors --config .electron-vue/webpack.renderer.config.js",
|
2018-09-29 12:20:05 +02:00
|
|
|
"postinstall": "npm run lint:fix",
|
2019-04-02 16:49:55 +02:00
|
|
|
"spec": "NODE_ENV=test jest -u --maxWorkers=3"
|
2018-03-07 14:28:48 +01:00
|
|
|
},
|
|
|
|
"build": {
|
2018-06-04 15:08:10 +02:00
|
|
|
"productName": "Whalebird",
|
2018-03-26 11:25:44 +02:00
|
|
|
"appId": "org.whalebird.desktop",
|
2019-04-23 16:30:39 +02:00
|
|
|
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
|
2018-03-07 14:28:48 +01:00
|
|
|
"directories": {
|
|
|
|
"output": "build"
|
|
|
|
},
|
2018-04-05 02:00:42 +02:00
|
|
|
"extraResources": [
|
2018-04-08 04:58:22 +02:00
|
|
|
"build/sounds/*"
|
2018-04-05 02:00:42 +02:00
|
|
|
],
|
2018-03-07 14:28:48 +01:00
|
|
|
"files": [
|
2018-03-27 05:17:55 +02:00
|
|
|
"dist/electron/**/*",
|
|
|
|
"build/icons/*"
|
2018-03-07 14:28:48 +01:00
|
|
|
],
|
|
|
|
"dmg": {
|
|
|
|
"contents": [
|
|
|
|
{
|
|
|
|
"x": 410,
|
|
|
|
"y": 150,
|
|
|
|
"type": "link",
|
|
|
|
"path": "/Applications"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"x": 130,
|
|
|
|
"y": 150,
|
|
|
|
"type": "file"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"mac": {
|
2018-03-26 11:25:44 +02:00
|
|
|
"icon": "build/icons/icon.icns",
|
2018-03-30 17:40:43 +02:00
|
|
|
"target": [
|
|
|
|
"dmg"
|
2018-03-31 14:43:52 +02:00
|
|
|
],
|
|
|
|
"category": "public.app-category.social-networking"
|
2018-03-07 14:28:48 +01:00
|
|
|
},
|
|
|
|
"win": {
|
2018-03-26 11:25:44 +02:00
|
|
|
"icon": "build/icons/icon.ico",
|
2019-04-24 02:07:50 +02:00
|
|
|
"target": "nsis"
|
2018-03-07 14:28:48 +01:00
|
|
|
},
|
2019-03-05 17:16:16 +01:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"allowToChangeInstallationDirectory": true
|
|
|
|
},
|
2018-03-07 14:28:48 +01:00
|
|
|
"linux": {
|
2018-03-26 11:25:44 +02:00
|
|
|
"icon": "build/icons",
|
|
|
|
"target": [
|
2019-11-07 15:55:32 +01:00
|
|
|
{
|
|
|
|
"target": "AppImage",
|
|
|
|
"arch": [
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
},
|
2019-04-23 16:30:39 +02:00
|
|
|
{
|
|
|
|
"target": "deb",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "rpm",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "tar.bz2",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
2019-05-27 17:48:20 +02:00
|
|
|
"ia32",
|
|
|
|
"armv7l",
|
|
|
|
"arm64"
|
2019-04-23 16:30:39 +02:00
|
|
|
]
|
|
|
|
},
|
2019-09-18 15:35:31 +02:00
|
|
|
{
|
|
|
|
"target": "pacman",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
},
|
2019-04-23 16:30:39 +02:00
|
|
|
{
|
|
|
|
"target": "snap",
|
|
|
|
"arch": [
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
}
|
2018-03-31 14:43:52 +02:00
|
|
|
],
|
|
|
|
"category": "Network"
|
2018-03-07 14:28:48 +01:00
|
|
|
}
|
|
|
|
},
|
2018-12-28 16:04:17 +01:00
|
|
|
"jest": {
|
2019-03-25 13:51:24 +01:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
2019-08-07 16:12:27 +02:00
|
|
|
"js",
|
|
|
|
"json"
|
2019-03-25 13:51:24 +01:00
|
|
|
],
|
2018-12-28 16:04:17 +01:00
|
|
|
"moduleNameMapper": {
|
2019-03-25 13:51:24 +01:00
|
|
|
"@/router": "<rootDir>/spec/mock/router.ts",
|
2018-12-28 16:04:17 +01:00
|
|
|
"^@/(.+)": "<rootDir>/src/renderer/$1",
|
2019-12-04 15:09:11 +01:00
|
|
|
"^~/(.+)": "<rootDir>/$1"
|
2018-12-29 07:38:29 +01:00
|
|
|
},
|
2018-12-30 06:59:53 +01:00
|
|
|
"testMatch": [
|
2019-03-25 13:51:24 +01:00
|
|
|
"**/spec/**/*.spec.ts"
|
|
|
|
],
|
2019-03-25 15:50:11 +01:00
|
|
|
"preset": "ts-jest/presets/js-with-ts",
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.(js|jsx)$": "babel-jest",
|
|
|
|
"^.+\\.(ts|tsx)$": "ts-jest"
|
|
|
|
},
|
2019-04-02 16:49:55 +02:00
|
|
|
"setupFiles": [
|
|
|
|
"core-js"
|
|
|
|
],
|
2019-03-25 13:51:24 +01:00
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
|
|
|
"tsConfig": "tsconfig.json"
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 16:04:17 +01:00
|
|
|
},
|
2018-03-07 14:28:48 +01:00
|
|
|
"dependencies": {
|
2020-06-01 12:05:46 +02:00
|
|
|
"@panter/vue-i18next": "^0.15.2",
|
2020-02-06 09:22:06 +01:00
|
|
|
"@trodi/electron-splashscreen": "^1.0.0",
|
2020-06-11 11:45:47 +02:00
|
|
|
"about-window": "^1.13.4",
|
2020-06-10 16:50:32 +02:00
|
|
|
"animate.css": "^4.1.0",
|
2019-09-23 12:31:25 +02:00
|
|
|
"auto-launch": "^5.0.5",
|
2020-04-21 10:50:34 +02:00
|
|
|
"axios": "^0.19.2",
|
2020-06-09 15:35:56 +02:00
|
|
|
"blueimp-load-image": "^5.12.0",
|
2018-12-05 12:42:32 +01:00
|
|
|
"boom": "^7.3.0",
|
2018-12-07 15:31:40 +01:00
|
|
|
"deep-extend": "^0.6.0",
|
2020-05-17 08:56:04 +02:00
|
|
|
"electron-context-menu": "^2.0.1",
|
2020-01-31 09:23:14 +01:00
|
|
|
"electron-json-storage": "^4.1.8",
|
2020-06-09 15:36:09 +02:00
|
|
|
"electron-log": "^4.2.1",
|
2018-12-05 12:42:32 +01:00
|
|
|
"electron-window-state": "^5.0.3",
|
2020-05-26 11:26:26 +02:00
|
|
|
"element-ui": "2.13.2",
|
2018-12-05 12:42:32 +01:00
|
|
|
"emoji-mart-vue": "^2.6.6",
|
2018-11-21 17:18:38 +01:00
|
|
|
"emojilib": "^2.4.0",
|
2018-12-05 12:42:32 +01:00
|
|
|
"hawk": "^7.0.10",
|
2019-11-19 09:06:19 +01:00
|
|
|
"hoek": "^6.1.3",
|
2020-06-10 17:03:19 +02:00
|
|
|
"i18next": "^19.4.5",
|
2019-08-20 17:52:26 +02:00
|
|
|
"lodash": "^4.17.15",
|
2020-05-23 15:03:30 +02:00
|
|
|
"megalodon": "3.2.2",
|
2020-06-11 11:46:59 +02:00
|
|
|
"moment": "^2.26.0",
|
2020-03-19 15:33:09 +01:00
|
|
|
"mousetrap": "^1.6.5",
|
2018-03-08 15:08:33 +01:00
|
|
|
"nedb": "^1.8.0",
|
2018-04-18 16:35:35 +02:00
|
|
|
"object-assign-deep": "^0.4.0",
|
2018-07-27 14:33:05 +02:00
|
|
|
"parse-link-header": "^1.0.1",
|
2018-05-15 12:46:59 +02:00
|
|
|
"rc": "^1.2.7",
|
2020-05-05 11:28:17 +02:00
|
|
|
"request": "^2.88.2",
|
2020-06-04 11:22:11 +02:00
|
|
|
"sanitize-html": "^1.26.0",
|
2018-04-05 02:00:42 +02:00
|
|
|
"simplayer": "0.0.8",
|
2018-09-29 12:20:05 +02:00
|
|
|
"system-font-families": "^0.4.1",
|
2018-05-15 12:46:59 +02:00
|
|
|
"tunnel-agent": "^0.6.0",
|
2019-12-28 17:17:23 +01:00
|
|
|
"vue": "^2.6.11",
|
2019-11-20 09:19:24 +01:00
|
|
|
"vue-awesome": "^4.0.2",
|
2020-04-17 10:39:06 +02:00
|
|
|
"vue-click-outside": "^1.1.0",
|
2018-03-07 14:28:48 +01:00
|
|
|
"vue-electron": "^1.0.6",
|
2020-04-30 11:02:40 +02:00
|
|
|
"vue-popperjs": "^2.3.0",
|
2020-06-12 10:48:33 +02:00
|
|
|
"vue-router": "^3.3.3",
|
2020-01-07 09:24:42 +01:00
|
|
|
"vue-shortkey": "^3.1.7",
|
2020-05-29 10:56:53 +02:00
|
|
|
"vuex": "^3.4.0",
|
2018-04-22 15:07:58 +02:00
|
|
|
"vuex-router-sync": "^5.0.0"
|
2018-03-07 14:28:48 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-10 16:53:23 +02:00
|
|
|
"@babel/core": "^7.10.2",
|
2020-05-29 10:59:25 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.10.1",
|
2020-06-13 07:21:58 +02:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
|
2020-06-11 11:33:21 +02:00
|
|
|
"@babel/plugin-transform-runtime": "^7.10.1",
|
2020-06-10 16:52:47 +02:00
|
|
|
"@babel/preset-env": "^7.10.2",
|
2020-06-03 11:07:43 +02:00
|
|
|
"@babel/runtime": "^7.10.2",
|
2020-01-13 10:08:56 +01:00
|
|
|
"@mapbox/stylelint-processor-arbitrary-tags": "^0.3.0",
|
2019-09-23 12:31:25 +02:00
|
|
|
"@types/auto-launch": "^5.0.1",
|
2019-04-16 15:35:46 +02:00
|
|
|
"@types/electron-json-storage": "^4.0.0",
|
2019-12-04 15:26:12 +01:00
|
|
|
"@types/i18next": "^13.0.0",
|
2020-03-12 09:03:45 +01:00
|
|
|
"@types/jest": "^25.1.4",
|
2020-06-11 11:41:08 +02:00
|
|
|
"@types/lodash": "^4.14.155",
|
2019-12-31 09:12:46 +01:00
|
|
|
"@types/nedb": "^1.8.9",
|
2020-06-10 16:51:01 +02:00
|
|
|
"@types/node": "^14.0.13",
|
2019-04-14 15:51:28 +02:00
|
|
|
"@types/parse-link-header": "^1.0.0",
|
2020-05-20 10:59:31 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
2020-05-28 11:30:03 +02:00
|
|
|
"@typescript-eslint/parser": "^2.34.0",
|
2020-06-10 16:50:58 +02:00
|
|
|
"@typescript-eslint/typescript-estree": "^3.2.0",
|
2020-05-28 11:26:44 +02:00
|
|
|
"@vue/test-utils": "^1.0.3",
|
2020-05-01 11:29:05 +02:00
|
|
|
"ajv": "^6.12.2",
|
2020-01-15 07:29:25 +01:00
|
|
|
"all-object-keys": "^2.1.1",
|
2020-03-30 15:33:09 +02:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-05-17 08:51:40 +02:00
|
|
|
"babel-jest": "^26.0.1",
|
2020-05-19 11:27:54 +02:00
|
|
|
"babel-loader": "^8.1.0",
|
2020-02-06 09:24:14 +01:00
|
|
|
"babel-plugin-istanbul": "^6.0.0",
|
2018-11-12 15:54:39 +01:00
|
|
|
"babel-register": "^6.26.0",
|
2020-06-13 07:22:02 +02:00
|
|
|
"cfonts": "^2.8.3",
|
2018-12-05 12:42:32 +01:00
|
|
|
"chai": "^4.2.0",
|
2020-06-11 11:29:37 +02:00
|
|
|
"chalk": "^4.1.0",
|
2020-06-13 07:28:52 +02:00
|
|
|
"copy-webpack-plugin": "^6.0.2",
|
2020-06-01 12:09:54 +02:00
|
|
|
"core-js": "^3.6.5",
|
2020-03-26 09:18:31 +01:00
|
|
|
"cross-env": "^7.0.2",
|
2020-05-19 11:30:10 +02:00
|
|
|
"css-loader": "^3.5.3",
|
2019-11-20 09:17:26 +01:00
|
|
|
"del": "^5.1.0",
|
2018-03-07 14:28:48 +01:00
|
|
|
"devtron": "^1.4.0",
|
2020-06-09 11:19:32 +02:00
|
|
|
"electron": "9.0.3",
|
2020-06-10 16:52:49 +02:00
|
|
|
"electron-builder": "^22.7.0",
|
2020-06-09 15:34:39 +02:00
|
|
|
"electron-debug": "^3.1.0",
|
2020-06-11 11:30:51 +02:00
|
|
|
"electron-devtools-installer": "^3.0.0",
|
2020-05-25 12:15:50 +02:00
|
|
|
"electron-mock-ipc": "^0.3.5",
|
2020-06-11 11:35:46 +02:00
|
|
|
"electron-packager": "^14.2.1",
|
2020-04-29 16:18:56 +02:00
|
|
|
"eslint": "^6.8.0",
|
2020-05-01 11:30:11 +02:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-05-17 08:52:20 +02:00
|
|
|
"eslint-config-standard": "^14.1.1",
|
2018-07-28 14:42:57 +02:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
2020-05-21 10:58:57 +02:00
|
|
|
"eslint-loader": "^4.0.2",
|
2020-04-17 10:37:05 +02:00
|
|
|
"eslint-plugin-html": "^6.0.2",
|
2020-06-11 11:42:23 +02:00
|
|
|
"eslint-plugin-import": "^2.21.2",
|
2020-04-29 16:03:44 +02:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2020-05-18 11:45:33 +02:00
|
|
|
"eslint-plugin-prettier": "^3.1.3",
|
2020-03-25 15:05:29 +01:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2020-04-16 10:39:09 +02:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-03-18 09:18:02 +01:00
|
|
|
"eslint-plugin-vue": "^6.2.2",
|
2020-05-05 11:24:50 +02:00
|
|
|
"file-loader": "^6.0.0",
|
2020-05-17 09:13:36 +02:00
|
|
|
"html-webpack-plugin": "^4.3.0",
|
2019-12-04 15:09:11 +01:00
|
|
|
"jest": "^24.9.0",
|
2020-03-30 15:32:32 +02:00
|
|
|
"jsdom": "^16.2.2",
|
2019-11-26 16:29:02 +01:00
|
|
|
"json-loader": "^0.5.7",
|
2019-09-17 13:41:12 +02:00
|
|
|
"listr": "^0.14.3",
|
2020-03-25 15:00:54 +01:00
|
|
|
"mini-css-extract-plugin": "^0.9.0",
|
2018-03-07 14:28:48 +01:00
|
|
|
"node-loader": "^0.6.0",
|
2020-05-20 11:03:06 +02:00
|
|
|
"node-sass": "^4.14.1",
|
2020-05-01 11:31:24 +02:00
|
|
|
"prettier": "^2.0.5",
|
2019-06-05 15:23:48 +02:00
|
|
|
"prettier-stylelint": "^0.4.2",
|
2020-04-13 10:55:03 +02:00
|
|
|
"regenerator-runtime": "^0.13.5",
|
2020-01-20 09:46:17 +01:00
|
|
|
"sass-loader": "^8.0.2",
|
2020-05-27 16:19:25 +02:00
|
|
|
"style-loader": "^1.2.1",
|
2020-06-11 11:34:28 +02:00
|
|
|
"stylelint": "^13.6.0",
|
2020-05-18 11:42:23 +02:00
|
|
|
"stylelint-config-standard": "^20.0.0",
|
2020-01-14 09:43:53 +01:00
|
|
|
"ts-jest": "^24.3.0",
|
2020-05-27 16:07:13 +02:00
|
|
|
"ts-loader": "^7.0.5",
|
2019-03-20 01:45:28 +01:00
|
|
|
"ttfinfo": "^0.2.0",
|
2020-06-11 11:36:57 +02:00
|
|
|
"typescript": "^3.9.5",
|
2020-04-17 10:39:34 +02:00
|
|
|
"url-loader": "^4.1.0",
|
2018-03-07 14:28:48 +01:00
|
|
|
"vue-html-loader": "^1.2.4",
|
2020-05-29 11:00:33 +02:00
|
|
|
"vue-loader": "^15.9.2",
|
2018-11-12 15:54:39 +01:00
|
|
|
"vue-style-loader": "^4.1.0",
|
2019-12-28 17:17:23 +01:00
|
|
|
"vue-template-compiler": "^2.6.11",
|
2020-06-10 16:53:33 +02:00
|
|
|
"webpack": "^4.43.0",
|
2020-03-27 09:37:46 +01:00
|
|
|
"webpack-cli": "^3.3.11",
|
2020-06-01 12:07:45 +02:00
|
|
|
"webpack-dev-server": "^3.11.0",
|
2019-11-01 15:20:37 +01:00
|
|
|
"webpack-hot-middleware": "^2.25.0",
|
2020-03-18 09:15:25 +01:00
|
|
|
"webpack-merge": "^4.2.2"
|
2018-03-07 14:28:48 +01:00
|
|
|
}
|
|
|
|
}
|