2017-01-16 14:06:53 -05:00
{
2019-09-01 12:05:12 +02:00
"name" : "lbry" ,
2022-11-18 14:15:03 -05:00
"version" : "0.53.8" ,
2017-11-28 21:29:59 -03:00
"description" : "A browser for the LBRY network, a digital marketplace controlled by its users." ,
2018-03-15 19:02:38 -04:00
"keywords" : [
"lbry"
] ,
"license" : "MIT" ,
2019-03-20 17:43:00 -04:00
"homepage" : "https://lbry.com/" ,
2017-12-12 08:46:08 -03:00
"bugs" : {
2018-07-12 14:39:12 -04:00
"url" : "https://github.com/lbryio/lbry-desktop/issues"
2017-12-12 08:46:08 -03:00
} ,
"repository" : {
"type" : "git" ,
2018-07-12 14:39:12 -04:00
"url" : "https://github.com/lbryio/lbry-desktop"
2017-12-12 08:46:08 -03:00
} ,
2017-11-28 21:29:59 -03:00
"author" : {
"name" : "LBRY Inc." ,
2019-03-20 17:43:00 -04:00
"email" : "hello@lbry.com"
2017-11-28 21:29:59 -03:00
} ,
2019-03-05 01:47:55 -06:00
"main" : "./dist/electron/main.js" ,
2017-11-28 21:29:59 -03:00
"scripts" : {
2021-06-14 09:58:09 +08:00
"analyze" : "source-map-explorer --only-mapped dist/electron/webpack/ui*.js --html dist/sourceMap.html" ,
2020-02-04 22:46:00 -05:00
"compile:electron" : "node --max_old_space_size=4096 ./node_modules/webpack/bin/webpack.js --config webpack.electron.config.js" ,
2021-10-22 11:08:27 -04:00
"compile" : "cross-env NODE_ENV=production yarn compile:electron" ,
2019-03-13 01:52:14 -05:00
"dev" : "yarn dev:electron" ,
2019-11-11 10:22:57 -05:00
"dev:electron" : "cross-env NODE_ENV=development node ./electron/devServer.js" ,
2019-03-06 12:04:26 -05:00
"pack" : "electron-builder --dir" ,
"dist" : "electron-builder" ,
2019-04-04 00:40:28 -04:00
"build" : "cross-env NODE_ENV=production yarn compile:electron && electron-builder build" ,
2019-03-06 12:04:26 -05:00
"build:dir" : "yarn build -- --dir -c.compression=store -c.mac.identity=null" ,
2022-04-04 15:32:09 +02:00
"crossenv" : "cross-env" ,
2021-09-29 22:04:43 +03:00
"flow" : "flow" ,
2021-10-22 11:08:27 -04:00
"lint" : "eslint 'ui/**/*.{js,jsx}' && eslint 'electron/**/*.js' && flow" ,
"lint-fix" : "eslint --fix --quiet 'ui/**/*.{js,jsx}' && eslint --fix --quiet 'electron/**/*.js'" ,
2020-12-08 16:50:10 -05:00
"format" : "prettier 'src/**/*.{js,jsx,scss,json}' --write" ,
2018-04-25 17:20:59 -04:00
"flow-defs" : "flow-typed install" ,
2018-03-23 15:37:09 -04:00
"precommit" : "lint-staged" ,
2021-10-25 12:33:39 -04:00
"postinstall" : "electron-builder install-app-deps && node ./build/downloadDaemon.js" ,
2019-08-08 13:26:09 -04:00
"postinstall:warning" : "echo '\n\nWARNING\n\nNot all node modules were installed because NODE_ENV is set to \"production\".\nThis should only be set after installing dependencies with \"yarn\". The app will not work.\n\n'"
2017-11-28 21:29:59 -03:00
} ,
"dependencies" : {
2022-01-27 16:36:18 -05:00
"@electron/remote" : "^2.0.1" ,
2022-10-07 14:56:33 -03:00
"@emotion/react" : "^11.10.4" ,
"@emotion/styled" : "^11.10.4" ,
2022-01-24 11:07:09 -05:00
"@mui/material" : "^5.2.1" ,
2021-10-07 23:47:39 -04:00
"@ungap/from-entries" : "^0.2.1" ,
2019-11-18 10:30:15 -08:00
"auto-launch" : "^5.0.5" ,
2021-11-11 09:19:09 -05:00
"electron-dl" : "^3.2.0" ,
2022-10-07 14:56:33 -03:00
"electron-log" : "^4.4.8" ,
2021-01-28 10:47:05 +00:00
"electron-notarize" : "^1.0.0" ,
2020-03-06 17:14:03 -05:00
"electron-updater" : "^4.2.4" ,
2019-11-12 17:00:23 -05:00
"express" : "^4.17.1" ,
2022-11-17 13:20:01 -05:00
"ffmpeg-probe" : "^1.0.6" ,
2021-08-20 15:18:54 +08:00
"humanize-duration" : "^3.27.0" ,
2021-09-10 23:36:08 +08:00
"match-sorter" : "^6.3.0" ,
2022-09-02 12:43:35 -04:00
"mime" : "^3.0.0" ,
2021-12-24 13:08:47 -05:00
"node-html-parser" : "^5.1.0" ,
2021-08-20 09:04:48 +08:00
"parse-duration" : "^1.0.0" ,
2021-10-24 16:42:44 -04:00
"proxy-polyfill" : "0.1.6" ,
2021-10-08 09:57:48 +08:00
"re-reselect" : "^4.0.0" ,
2022-01-27 10:20:21 -05:00
"react-beautiful-dnd" : "^13.1.0" ,
"react-datetime-picker" : "^3.4.3" ,
2021-06-14 09:58:09 +08:00
"source-map-explorer" : "^2.5.2" ,
2022-07-07 16:48:42 -04:00
"sudo-prompt" : "^9.2.1" ,
2022-10-07 14:56:33 -03:00
"tempy" : "^0.6.0"
2017-11-28 21:29:59 -03:00
} ,
2017-01-26 17:21:06 -06:00
"devDependencies" : {
2019-03-04 23:46:57 -05:00
"@babel/core" : "^7.0.0" ,
"@babel/plugin-proposal-class-properties" : "^7.0.0" ,
"@babel/plugin-proposal-decorators" : "^7.3.0" ,
2019-11-21 12:38:15 -05:00
"@babel/plugin-proposal-object-rest-spread" : "^7.6.2" ,
2021-10-06 21:59:33 +03:00
"@babel/plugin-proposal-optional-chaining" : "^7.14.5" ,
2019-03-26 23:40:02 -05:00
"@babel/plugin-syntax-dynamic-import" : "^7.2.0" ,
2019-03-04 23:46:57 -05:00
"@babel/plugin-transform-flow-strip-types" : "^7.2.3" ,
2019-04-03 00:56:58 -05:00
"@babel/plugin-transform-runtime" : "^7.4.3" ,
2022-10-07 14:56:33 -03:00
"@babel/polyfill" : "^7.12.1" ,
2021-01-28 10:48:04 +00:00
"@babel/preset-env" : "^7.12.11" ,
2021-02-02 10:48:02 +00:00
"@babel/preset-flow" : "^7.12.1" ,
2019-03-04 23:46:57 -05:00
"@babel/preset-react" : "^7.0.0" ,
2019-03-14 20:54:17 -05:00
"@babel/register" : "^7.0.0" ,
2020-05-29 11:11:50 -04:00
"@datapunt/matomo-tracker-js" : "^0.1.4" ,
2021-01-29 10:46:01 +00:00
"@hot-loader/react-dom" : "^16.13" ,
2022-01-02 15:34:13 -05:00
"@meetfranz/electron-cookies" : "^3.0.2" ,
2020-12-03 12:29:47 -05:00
"@reach/combobox" : "^0.12.1" ,
2022-04-17 13:04:56 -04:00
"@reach/menu-button" : "0.8.6" ,
2022-01-19 15:12:54 -05:00
"@reach/rect" : "^0.16.0" ,
2019-05-21 23:47:30 -04:00
"@reach/tabs" : "^0.1.5" ,
2021-02-16 16:09:20 -05:00
"@reach/tooltip" : "^0.12.1" ,
2020-12-03 12:29:47 -05:00
"@reach/utils" : "^0.12.1" ,
2020-02-04 22:46:00 -05:00
"@sentry/browser" : "^5.12.1" ,
"@sentry/webpack-plugin" : "^1.10.0" ,
2021-01-27 15:20:39 +00:00
"@types/three" : "^0.103.2" ,
2019-06-21 14:29:22 -07:00
"adm-zip" : "^0.4.13" ,
2019-03-04 23:46:57 -05:00
"babel-eslint" : "^10.0.1" ,
"babel-loader" : "^8.0.5" ,
2021-02-01 13:15:18 +00:00
"babel-plugin-add-module-exports" : "^1.0.4" ,
2019-04-03 00:56:58 -05:00
"babel-plugin-import-glob" : "^2.0.0" ,
2019-03-14 20:54:17 -05:00
"babel-plugin-transform-imports" : "^1.5.1" ,
2019-11-21 17:02:49 -05:00
"babel-plugin-transform-object-rest-spread" : "^6.26.0" ,
2021-02-01 13:16:03 +00:00
"chalk" : "^4.1.0" ,
2019-03-15 17:37:34 -05:00
"classnames" : "^2.2.5" ,
"codemirror" : "^5.39.2" ,
2021-02-02 10:48:29 +00:00
"connected-react-router" : "^6.8.0" ,
2021-12-08 22:35:38 -05:00
"copy-webpack-plugin" : "^6.4.1" ,
2019-03-15 17:37:34 -05:00
"country-data" : "^0.0.31" ,
2020-12-08 16:50:10 -05:00
"cross-env" : "^7.0.3" ,
2020-06-01 13:03:19 -04:00
"crypto-js" : "^4.0.0" ,
2019-05-29 15:48:44 -04:00
"css-doodle" : "^0.7.1" ,
2019-03-04 23:46:57 -05:00
"css-loader" : "^2.1.0" ,
2019-04-03 00:56:58 -05:00
"cssnano" : "^4.1.10" ,
2019-03-15 17:37:34 -05:00
"dat.gui" : "^0.7.2" ,
2020-09-04 04:26:02 +00:00
"decompress" : "^4.2.1" ,
2018-03-14 16:38:55 -04:00
"del" : "^3.0.0" ,
2017-12-04 16:02:29 -03:00
"devtron" : "^1.4.0" ,
2021-01-27 15:21:11 +00:00
"dotenv-defaults" : "^2.0.1" ,
2020-05-07 14:44:11 -04:00
"dotenv-webpack" : "^1.8.0" ,
2022-10-20 13:09:47 -04:00
"electron" : "17.2.0" ,
2022-02-27 09:01:12 -05:00
"electron-builder" : "^22.10.5" ,
2020-12-30 17:31:03 -05:00
"electron-devtools-installer" : "^3.1.1" ,
2019-03-15 17:37:34 -05:00
"electron-is-dev" : "^0.3.0" ,
2020-09-06 18:46:30 -04:00
"electron-webpack" : "^2.8.2" ,
2019-03-15 17:37:34 -05:00
"electron-window-state" : "^4.1.1" ,
2021-03-10 13:34:21 -05:00
"emoji-dictionary" : "^1.0.11" ,
2019-03-18 01:09:50 -04:00
"eslint" : "^5.15.2" ,
2017-12-13 18:35:07 -03:00
"eslint-config-prettier" : "^2.9.0" ,
2019-03-18 01:09:50 -04:00
"eslint-config-standard" : "^12.0.0" ,
"eslint-config-standard-jsx" : "^6.0.2" ,
2019-03-07 16:46:15 -05:00
"eslint-import-resolver-webpack" : "^0.11.0" ,
2018-03-07 18:03:45 -05:00
"eslint-plugin-flowtype" : "^2.46.1" ,
2018-04-03 15:54:46 -04:00
"eslint-plugin-import" : "^2.10.0" ,
2017-12-13 18:35:07 -03:00
"eslint-plugin-jsx-a11y" : "^6.0.3" ,
2019-03-18 01:09:50 -04:00
"eslint-plugin-node" : "^8.0.1" ,
2018-03-07 18:03:45 -05:00
"eslint-plugin-prettier" : "^2.6.0" ,
2019-03-18 01:09:50 -04:00
"eslint-plugin-promise" : "^4.0.1" ,
2018-03-07 18:03:45 -05:00
"eslint-plugin-react" : "^7.7.0" ,
2019-05-06 22:35:04 -04:00
"eslint-plugin-react-hooks" : "^1.6.0" ,
2019-11-13 13:14:19 -05:00
"eslint-plugin-standard" : "^4.0.1" ,
2019-11-07 14:39:22 -05:00
"file-loader" : "^4.2.0" ,
2019-04-24 10:02:08 -04:00
"flow-bin" : "^0.97.0" ,
2022-03-07 17:06:04 -05:00
"flow-typed" : "^3.7.0" ,
2019-03-15 17:37:34 -05:00
"formik" : "^0.10.4" ,
2021-02-03 16:20:27 +00:00
"hast-util-sanitize" : "^3.0.2" ,
2019-04-04 17:05:23 -04:00
"history" : "^4.9.0" ,
2019-12-13 17:32:20 -05:00
"husky" : "^3.1.0" ,
2019-11-07 14:39:22 -05:00
"imagesloaded" : "^4.1.4" ,
2017-11-28 21:29:59 -03:00
"json-loader" : "^0.5.4" ,
2018-04-03 15:00:50 -04:00
"lint-staged" : "^7.0.2" ,
2019-03-15 17:37:34 -05:00
"localforage" : "^1.7.1" ,
2022-04-13 15:47:14 +00:00
"lodash-es" : "^4.17.21" ,
2021-02-01 13:16:41 +00:00
"mammoth" : "^1.4.16" ,
2022-04-09 01:05:05 +00:00
"moment" : "^2.29.2" ,
2022-03-07 09:30:30 -05:00
"node-fetch" : "^2.6.7" ,
2017-11-28 21:29:59 -03:00
"node-loader" : "^0.6.0" ,
2021-06-21 12:28:35 -04:00
"node-wget" : "^0.4.3" ,
2019-08-23 11:54:08 -04:00
"nodemon" : "^1.19.1" ,
2019-04-03 00:56:58 -05:00
"postcss-import" : "^12.0.1" ,
"postcss-loader" : "^3.0.0" ,
2020-07-08 16:10:04 +02:00
"postcss-rtl" : "^1.7.3" ,
2019-03-04 23:46:57 -05:00
"preprocess-loader" : "^0.3.0" ,
2021-02-05 10:48:47 +00:00
"prettier" : "^2.2.1" ,
2019-03-15 17:37:34 -05:00
"prop-types" : "^15.6.2" ,
"qrcode.react" : "^0.8.0" ,
2019-03-19 23:52:37 -05:00
"raw-loader" : "^2.0.0" ,
2019-03-15 17:37:34 -05:00
"rc-progress" : "^2.0.6" ,
"react" : "^16.8.2" ,
2021-01-27 11:24:14 +08:00
"react-awesome-lightbox" : "^1.7.3" ,
2019-03-15 17:37:34 -05:00
"react-dom" : "^16.8.2" ,
2019-08-13 01:35:13 -04:00
"react-draggable" : "^3.3.0" ,
2019-11-13 19:33:36 -05:00
"react-google-recaptcha" : "^2.0.1" ,
2019-06-26 14:11:05 -04:00
"react-hot-loader" : "^4.11.1" ,
2019-03-15 17:37:34 -05:00
"react-modal" : "^3.1.7" ,
"react-paginate" : "^5.2.1" ,
2019-04-04 17:05:23 -04:00
"react-redux" : "^6.0.1" ,
2021-02-08 12:57:27 -05:00
"react-router" : "^5.1.0" ,
2020-01-14 15:44:07 -05:00
"react-router-dom" : "^5.1.0" ,
2021-02-02 10:47:28 +00:00
"react-simplemde-editor" : "^4.1.3" ,
2019-12-13 17:32:20 -05:00
"reakit" : "^1.0.0-beta.13" ,
2019-03-15 17:37:34 -05:00
"redux" : "^3.6.0" ,
2019-07-23 04:05:51 -04:00
"redux-persist" : "^5.10.0" ,
2019-03-15 17:37:34 -05:00
"redux-persist-transform-compress" : "^4.2.0" ,
"redux-persist-transform-filter" : "0.0.16" ,
"redux-thunk" : "^2.2.0" ,
"remark" : "^9.0.0" ,
2019-06-10 14:16:01 -06:00
"remark-attr" : "^0.8.3" ,
2021-03-03 13:50:16 -05:00
"remark-breaks" : "^1.0.5" ,
2019-03-15 17:37:34 -05:00
"remark-emoji" : "^2.0.1" ,
2020-12-17 16:44:16 -06:00
"remark-frontmatter" : "^2.0.0" ,
2021-01-29 16:14:28 +00:00
"remark-react" : "^8.0.0" ,
2021-01-29 10:44:34 +00:00
"reselect" : "^4.0.0" ,
2020-12-01 12:56:59 -05:00
"sass" : "^1.29.0" ,
2019-03-04 23:46:57 -05:00
"sass-loader" : "^7.1.0" ,
2019-03-15 17:37:34 -05:00
"semver" : "^5.3.0" ,
2019-06-09 00:57:51 -06:00
"strip-markdown" : "^3.0.3" ,
2019-03-04 23:46:57 -05:00
"style-loader" : "^0.23.1" ,
2021-12-08 22:35:38 -05:00
"terser-webpack-plugin" : "^4.2.3" ,
2022-03-07 09:30:30 -05:00
"three-full" : "^28.0.2" ,
2021-02-03 16:18:30 +00:00
"unist-util-visit" : "^2.0.3" ,
2021-01-29 10:45:33 +00:00
"uuid" : "^8.3.2" ,
2021-11-27 15:19:38 +00:00
"video.js" : "^7.14.3" ,
2021-01-14 14:43:16 -05:00
"videojs-contrib-quality-levels" : "^2.0.9" ,
2020-01-24 10:44:37 -05:00
"videojs-event-tracking" : "^1.0.1" ,
2020-04-25 19:54:32 -05:00
"villain-react" : "^1.0.9" ,
2021-12-08 22:35:38 -05:00
"webpack" : "^4.44.2" ,
2019-03-26 23:40:02 -05:00
"webpack-bundle-analyzer" : "^3.1.0" ,
2019-11-07 14:39:22 -05:00
"webpack-cli" : "^3.3.10" ,
2019-03-08 19:19:29 -05:00
"webpack-config-utils" : "^2.3.1" ,
2019-03-05 00:24:03 -06:00
"webpack-dev-middleware" : "^3.6.0" ,
2020-06-23 16:21:40 -04:00
"webpack-dev-server" : "^3.9.0" ,
2019-03-13 01:52:14 -05:00
"webpack-hot-middleware" : "^2.24.3" ,
2019-03-04 23:46:57 -05:00
"webpack-merge" : "^4.2.1" ,
"webpack-node-externals" : "^1.7.2" ,
2018-04-03 15:17:42 -04:00
"yarnhook" : "^0.2.0"
2017-11-28 21:29:59 -03:00
} ,
2017-12-12 08:38:20 -03:00
"engines" : {
2022-10-07 14:56:33 -03:00
"node" : ">=16.13" ,
2017-12-12 08:38:20 -03:00
"yarn" : "^1.3"
} ,
2017-11-28 21:29:59 -03:00
"lbrySettings" : {
2022-11-04 12:31:44 -04:00
"lbrynetDaemonVersion" : "0.112.0" ,
2019-07-23 20:12:34 -04:00
"lbrynetDaemonUrlTemplate" : "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip" ,
2019-03-18 21:44:49 -04:00
"lbrynetDaemonDir" : "static/daemon" ,
2021-10-25 11:27:08 -04:00
"lbrynetDaemonFileName" : "lbrynet"
2022-04-04 15:32:09 +02:00
} ,
2022-11-18 14:15:03 -05:00
"packageManager" : "yarn@3.2.0"
2019-01-31 16:26:14 -05:00
}