lbry-desktop/package.json

246 lines
8.4 KiB
JSON
Raw Normal View History

2017-01-16 20:06:53 +01:00
{
2019-09-01 12:05:12 +02:00
"name": "lbry",
2022-06-10 19:58:49 +02:00
"version": "0.53.4",
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
"keywords": [
"lbry"
],
"license": "MIT",
2019-03-20 22:43:00 +01:00
"homepage": "https://lbry.com/",
2017-12-12 12:46:08 +01:00
"bugs": {
"url": "https://github.com/lbryio/lbry-desktop/issues"
2017-12-12 12:46:08 +01:00
},
"repository": {
"type": "git",
"url": "https://github.com/lbryio/lbry-desktop"
2017-12-12 12:46:08 +01:00
},
"author": {
"name": "LBRY Inc.",
2019-03-20 22:43:00 +01:00
"email": "hello@lbry.com"
},
2019-03-05 08:47:55 +01:00
"main": "./dist/electron/main.js",
"scripts": {
2021-06-14 03:58:09 +02:00
"analyze": "source-map-explorer --only-mapped dist/electron/webpack/ui*.js --html dist/sourceMap.html",
2020-02-05 04:46:00 +01:00
"compile:electron": "node --max_old_space_size=4096 ./node_modules/webpack/bin/webpack.js --config webpack.electron.config.js",
2021-10-22 17:08:27 +02:00
"compile": "cross-env NODE_ENV=production yarn compile:electron",
2019-03-13 07:52:14 +01:00
"dev": "yarn dev:electron",
2019-11-11 16:22:57 +01:00
"dev:electron": "cross-env NODE_ENV=development node ./electron/devServer.js",
2019-03-06 18:04:26 +01:00
"pack": "electron-builder --dir",
"dist": "electron-builder",
2019-04-04 06:40:28 +02:00
"build": "cross-env NODE_ENV=production yarn compile:electron && electron-builder build",
2019-03-06 18:04:26 +01:00
"build:dir": "yarn build -- --dir -c.compression=store -c.mac.identity=null",
2022-04-04 15:32:09 +02:00
"crossenv": "cross-env",
"flow": "flow",
2021-10-22 17:08:27 +02: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 22:50:10 +01:00
"format": "prettier 'src/**/*.{js,jsx,scss,json}' --write",
"flow-defs": "flow-typed install",
2018-03-23 20:37:09 +01:00
"precommit": "lint-staged",
2021-10-25 18:33:39 +02:00
"postinstall": "electron-builder install-app-deps && node ./build/downloadDaemon.js",
"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'"
},
"dependencies": {
2022-01-27 22:36:18 +01:00
"@electron/remote": "^2.0.1",
Bringing in emotes, stickers, and refactors from ody (#7435) * [New Feature] Comment Emotes (#125) * Refactor form-field * Create new Emote Menu * Add Emotes * Add Emote Selector and Emote Comment creation ability * Fix and Split CSS * [New Feature] Stickers (#131) * Refactor filePrice * Refactor Wallet Tip Components * Add backend sticker support for comments * Add stickers * Refactor commentCreate * Add Sticker Selector and sticker comment creation * Add stickers display to comments and hyperchats * Fix wrong checks for total Super Chats * Stickers/emojis fall out / improvements (#220) * Fix error logs * Improve LBC sticker flow/clarity * Show inline error if custom sticker amount below min * Sort emojis alphabetically * Improve loading of Images * Improve quality and display of emojis and fix CSS * Display both USD and LBC prices * Default to LBC tip if creator can't receive USD * Don't clear text-field after sticker is sent * Refactor notification component * Handle notifications * Don't show profile pic on sticker livestream comments * Change Sticker icon * Fix wording and number rounding * Fix blurring emojis * Disable non functional emote buttons * new Stickers! (#248) * Add new stickers (#347) * Fix cancel sending sticker (#447) * Refactor scrollbar CSS for portal components outside of main Refactor channelMention suggestions into new textareaSuggestions component Install @mui/material packages Move channel mentioning to use @mui/Autocomplete combobox without search functionality Add support for suggesting Emotes while typing ':' Improve label to display matching term Add back and improved support for searching while mentioning Add support for suggesting emojis Fix non concatenated strings Add key to groups and options Fix dispatch props Fix Popper positioning to be consistent Fix and Improve searching Add back support for Winning Uri Filter default emojis with the same name as emotes Remove unused topSuggestion component Fix text color on darkmode Fix livestream updating state from both websocket and reducer and causing double of the same comments to appear Fix blur and focus commentCreate events Fix no name after @ error * desktop tweaks Co-authored-by: saltrafael <76502841+saltrafael@users.noreply.github.com> Co-authored-by: Thomas Zarebczan <tzarebczan@users.noreply.github.com> Co-authored-by: Rafael <rafael.saes@odysee.com>
2022-01-24 17:07:09 +01:00
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.2.1",
"@ungap/from-entries": "^0.2.1",
2019-11-18 19:30:15 +01:00
"auto-launch": "^5.0.5",
"electron-dl": "^3.2.0",
"electron-log": "^2.2.12",
"electron-notarize": "^1.0.0",
"electron-updater": "^4.2.4",
2019-11-12 23:00:23 +01:00
"express": "^4.17.1",
"humanize-duration": "^3.27.0",
2020-04-14 01:48:11 +02:00
"if-env": "^1.0.4",
"match-sorter": "^6.3.0",
2021-12-24 19:08:47 +01:00
"node-html-parser": "^5.1.0",
"parse-duration": "^1.0.0",
2021-10-24 22:42:44 +02:00
"proxy-polyfill": "0.1.6",
"re-reselect": "^4.0.0",
Playlistorder (#7442) * Add horizontal layout (#636) * Test out a horizontal scroll for upcoming (tile only for now) * - add support for list layout - add following label on home page - clan up css and naming conventions * Update header type + show only if scheduled streams are showing * [Playlist] Pull in sorting changes from desktop + Add Drag-n-Drop + Handle unavailable/deleted claims (#641) * Add ordering Icons * Refactor doCollectionEdit - It required claims as parameter, when only uris are used to populate the collection, so that was changed to pass down the uris instead. - There were unused and mostly unnecessary functions inside, for example the parameter claimIds was never used so it would never enter the claimSearch function which again would be used to generate uris, so it's better to just use uris as parameter * Add List Reordering changes * Add toggle button for list editing * Add toggle on content page collection sidebar * Enable drag-n-drop to re-order list items https://www.youtube.com/watch?v=aYZRRyukuIw * Allow removing all unavailable claims from a List * Fix <g> on icons * Fix section buttons positioning * Move preventDefault and stopPropagation to buttons div instead of each button, preventing clicking even if disabled opening the claim * Change dragging cursor * Fix sizing * Fix dragging component * Restrict dragging to vertical axis * Ignore shuffle state for ordering * Fix console errors * Mobile fixes * Fix sidebar spacing * Fix grey on mobile after click * cleanup Co-authored-by: Dan Peterson <dan@dan-peterson.ca> Co-authored-by: saltrafael <76502841+saltrafael@users.noreply.github.com>
2022-01-27 16:20:21 +01:00
"react-beautiful-dnd": "^13.1.0",
"react-color": "^2.19.3",
Playlistorder (#7442) * Add horizontal layout (#636) * Test out a horizontal scroll for upcoming (tile only for now) * - add support for list layout - add following label on home page - clan up css and naming conventions * Update header type + show only if scheduled streams are showing * [Playlist] Pull in sorting changes from desktop + Add Drag-n-Drop + Handle unavailable/deleted claims (#641) * Add ordering Icons * Refactor doCollectionEdit - It required claims as parameter, when only uris are used to populate the collection, so that was changed to pass down the uris instead. - There were unused and mostly unnecessary functions inside, for example the parameter claimIds was never used so it would never enter the claimSearch function which again would be used to generate uris, so it's better to just use uris as parameter * Add List Reordering changes * Add toggle button for list editing * Add toggle on content page collection sidebar * Enable drag-n-drop to re-order list items https://www.youtube.com/watch?v=aYZRRyukuIw * Allow removing all unavailable claims from a List * Fix <g> on icons * Fix section buttons positioning * Move preventDefault and stopPropagation to buttons div instead of each button, preventing clicking even if disabled opening the claim * Change dragging cursor * Fix sizing * Fix dragging component * Restrict dragging to vertical axis * Ignore shuffle state for ordering * Fix console errors * Mobile fixes * Fix sidebar spacing * Fix grey on mobile after click * cleanup Co-authored-by: Dan Peterson <dan@dan-peterson.ca> Co-authored-by: saltrafael <76502841+saltrafael@users.noreply.github.com>
2022-01-27 16:20:21 +01:00
"react-datetime-picker": "^3.4.3",
"remove-markdown": "^0.3.0",
"rss": "^1.2.2",
2021-06-14 03:58:09 +02:00
"source-map-explorer": "^2.5.2",
"sudo-prompt": "^9.2.1",
"tempy": "^0.6.0",
"videojs-logo": "^2.1.4"
},
2017-01-27 00:21:06 +01:00
"devDependencies": {
2019-03-05 05:46:57 +01:00
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
2019-11-21 18:38:15 +01:00
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
2019-03-27 05:40:02 +01:00
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
2019-03-05 05:46:57 +01:00
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
2019-04-03 07:56:58 +02:00
"@babel/plugin-transform-runtime": "^7.4.3",
2019-03-15 23:37:34 +01:00
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "^7.12.1",
2019-03-05 05:46:57 +01:00
"@babel/preset-react": "^7.0.0",
2019-03-15 02:54:17 +01:00
"@babel/register": "^7.0.0",
2020-05-29 17:11:50 +02:00
"@datapunt/matomo-tracker-js": "^0.1.4",
"@hot-loader/react-dom": "^16.13",
2022-01-02 21:34:13 +01:00
"@meetfranz/electron-cookies": "^3.0.2",
"@reach/auto-id": "^0.13.0",
2020-12-03 18:29:47 +01:00
"@reach/combobox": "^0.12.1",
"@reach/menu-button": "0.8.6",
2022-01-19 21:12:54 +01:00
"@reach/rect": "^0.16.0",
2019-05-22 05:47:30 +02:00
"@reach/tabs": "^0.1.5",
"@reach/tooltip": "^0.12.1",
2020-12-03 18:29:47 +01:00
"@reach/utils": "^0.12.1",
2020-02-05 04:46:00 +01:00
"@sentry/browser": "^5.12.1",
"@sentry/webpack-plugin": "^1.10.0",
"@types/three": "^0.103.2",
"adm-zip": "^0.4.13",
2019-03-05 05:46:57 +01:00
"async-exit-hook": "^2.0.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.4",
2019-04-03 07:56:58 +02:00
"babel-plugin-import-glob": "^2.0.0",
2019-03-15 02:54:17 +01:00
"babel-plugin-transform-imports": "^1.5.1",
2019-11-21 23:02:49 +01:00
"babel-plugin-transform-object-rest-spread": "^6.26.0",
2019-03-15 23:37:34 +01:00
"bluebird": "^3.5.1",
"chalk": "^4.1.0",
2019-03-15 23:37:34 +01:00
"classnames": "^2.2.5",
"codemirror": "^5.39.2",
"concurrently": "^4.1.2",
"connected-react-router": "^6.8.0",
"copy-webpack-plugin": "^6.4.1",
2021-07-26 20:29:25 +02:00
"copyfiles": "^2.4.1",
2019-03-15 23:37:34 +01:00
"country-data": "^0.0.31",
2020-12-08 22:50:10 +01:00
"cross-env": "^7.0.3",
2020-06-01 19:03:19 +02:00
"crypto-js": "^4.0.0",
2019-05-29 21:48:44 +02:00
"css-doodle": "^0.7.1",
2019-03-05 05:46:57 +01:00
"css-loader": "^2.1.0",
2019-04-03 07:56:58 +02:00
"cssnano": "^4.1.10",
2019-03-15 23:37:34 +01:00
"dat.gui": "^0.7.2",
"decompress": "^4.2.1",
"del": "^3.0.0",
2017-12-04 20:02:29 +01:00
"devtron": "^1.4.0",
2019-03-15 23:37:34 +01:00
"dom-scroll-into-view": "^1.2.1",
"dotenv-defaults": "^2.0.1",
"dotenv-webpack": "^1.8.0",
"electron": "15.5.5",
2022-02-27 15:01:12 +01:00
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.1.1",
2019-03-15 23:37:34 +01:00
"electron-is-dev": "^0.3.0",
"electron-webpack": "^2.8.2",
2019-03-15 23:37:34 +01:00
"electron-window-state": "^4.1.1",
"emoji-dictionary": "^1.0.11",
2019-03-18 06:09:50 +01:00
"eslint": "^5.15.2",
2017-12-13 22:35:07 +01:00
"eslint-config-prettier": "^2.9.0",
2019-03-18 06:09:50 +01:00
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
2017-12-13 22:35:07 +01:00
"eslint-plugin-jsx-a11y": "^6.0.3",
2019-03-18 06:09:50 +01:00
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^2.6.0",
2019-03-18 06:09:50 +01:00
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.7.0",
2019-05-07 04:35:04 +02:00
"eslint-plugin-react-hooks": "^1.6.0",
2019-11-13 19:14:19 +01:00
"eslint-plugin-standard": "^4.0.1",
2019-11-07 20:39:22 +01:00
"file-loader": "^4.2.0",
2019-04-24 16:02:08 +02:00
"flow-bin": "^0.97.0",
2022-03-07 23:06:04 +01:00
"flow-typed": "^3.7.0",
2019-03-15 23:37:34 +01:00
"formik": "^0.10.4",
"hast-util-sanitize": "^3.0.2",
2019-04-04 23:05:23 +02:00
"history": "^4.9.0",
"husky": "^3.1.0",
2019-11-07 20:39:22 +01:00
"imagesloaded": "^4.1.4",
"json-loader": "^0.5.4",
"lint-staged": "^7.0.2",
2019-03-15 23:37:34 +01:00
"localforage": "^1.7.1",
"lodash-es": "^4.17.21",
"mammoth": "^1.4.16",
"moment": "^2.29.2",
2019-03-15 23:37:34 +01:00
"node-abi": "^2.5.1",
2022-03-07 15:30:30 +01:00
"node-fetch": "^2.6.7",
"node-html-parser": "^5.1.0",
2022-01-04 19:59:13 +01:00
"node-libs-browser": "^2.1.0",
"node-loader": "^0.6.0",
2021-06-21 18:28:35 +02:00
"node-wget": "^0.4.3",
"nodemon": "^1.19.1",
2019-04-03 07:56:58 +02:00
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-rtl": "^1.7.3",
2019-03-05 05:46:57 +01:00
"preprocess-loader": "^0.3.0",
"prettier": "^2.2.1",
2019-03-15 23:37:34 +01:00
"prop-types": "^15.6.2",
"qrcode.react": "^0.8.0",
2019-03-20 05:52:37 +01:00
"raw-loader": "^2.0.0",
2019-03-15 23:37:34 +01:00
"rc-progress": "^2.0.6",
"react": "^16.8.2",
"react-awesome-lightbox": "^1.7.3",
"react-confetti": "^4.0.1",
2019-03-15 23:37:34 +01:00
"react-dom": "^16.8.2",
2019-08-13 07:35:13 +02:00
"react-draggable": "^3.3.0",
2019-11-14 01:33:36 +01:00
"react-google-recaptcha": "^2.0.1",
2019-06-26 20:11:05 +02:00
"react-hot-loader": "^4.11.1",
2019-03-15 23:37:34 +01:00
"react-modal": "^3.1.7",
"react-paginate": "^5.2.1",
2019-04-04 23:05:23 +02:00
"react-redux": "^6.0.1",
"react-router": "^5.1.0",
2020-01-14 21:44:07 +01:00
"react-router-dom": "^5.1.0",
"react-simplemde-editor": "^4.1.3",
2019-06-11 20:10:58 +02:00
"react-spring": "^8.0.20",
"reakit": "^1.0.0-beta.13",
2019-03-15 23:37:34 +01:00
"redux": "^3.6.0",
2019-07-23 10:05:51 +02:00
"redux-persist": "^5.10.0",
2019-03-15 23:37:34 +01: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 22:16:01 +02:00
"remark-attr": "^0.8.3",
"remark-breaks": "^1.0.5",
2019-03-15 23:37:34 +01:00
"remark-emoji": "^2.0.1",
"remark-frontmatter": "^2.0.0",
"remark-react": "^8.0.0",
"reselect": "^4.0.0",
2020-12-01 18:56:59 +01:00
"sass": "^1.29.0",
2019-03-05 05:46:57 +01:00
"sass-loader": "^7.1.0",
2019-03-15 23:37:34 +01:00
"semver": "^5.3.0",
"stream-to-blob-url": "^2.1.1",
2019-06-09 08:57:51 +02:00
"strip-markdown": "^3.0.3",
2019-03-05 05:46:57 +01:00
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^4.2.3",
2022-03-07 15:30:30 +01:00
"three-full": "^28.0.2",
"tiny-relative-date": "^1.3.0",
2019-03-15 23:37:34 +01:00
"tree-kill": "^1.1.0",
"unist-util-visit": "^2.0.3",
"uuid": "^8.3.2",
"video.js": "^7.14.3",
"videojs-contrib-quality-levels": "^2.0.9",
2020-01-24 16:44:37 +01:00
"videojs-event-tracking": "^1.0.1",
2020-04-26 02:54:32 +02:00
"villain-react": "^1.0.9",
2019-04-03 07:56:58 +02:00
"wavesurfer.js": "^2.2.1",
"webpack": "^4.44.2",
2019-03-27 05:40:02 +01:00
"webpack-bundle-analyzer": "^3.1.0",
2019-11-07 20:39:22 +01:00
"webpack-cli": "^3.3.10",
2019-03-09 01:19:29 +01:00
"webpack-config-utils": "^2.3.1",
2019-03-05 07:24:03 +01:00
"webpack-dev-middleware": "^3.6.0",
"webpack-dev-server": "^3.9.0",
2019-03-13 07:52:14 +01:00
"webpack-hot-middleware": "^2.24.3",
2019-03-05 05:46:57 +01:00
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2",
"y18n": "^4.0.1",
"yarnhook": "^0.2.0"
},
2017-12-12 12:38:20 +01:00
"engines": {
2018-03-25 19:57:29 +02:00
"node": ">=7",
2017-12-12 12:38:20 +01:00
"yarn": "^1.3"
},
"lbrySettings": {
2022-08-26 22:12:08 +02:00
"lbrynetDaemonVersion": "0.110.0",
2019-07-24 02:12:34 +02:00
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip",
2019-03-19 02:44:49 +01:00
"lbrynetDaemonDir": "static/daemon",
2021-10-25 17:27:08 +02:00
"lbrynetDaemonFileName": "lbrynet"
2022-04-04 15:32:09 +02:00
},
2022-06-10 19:58:49 +02:00
"packageManager": "yarn@3.2.0"
2019-01-31 22:26:14 +01:00
}