2015-06-10 00:40:42 +08:00
|
|
|
{
|
2020-11-24 22:05:44 +08:00
|
|
|
"name": "element-web",
|
2024-07-04 21:04:06 +08:00
|
|
|
"version": "1.11.70-rc.1",
|
2022-12-06 21:08:01 +08:00
|
|
|
"description": "A feature-rich client for Matrix.org",
|
2021-04-22 19:09:50 +08:00
|
|
|
"author": "New Vector Ltd.",
|
2022-08-02 18:15:38 +08:00
|
|
|
"repository": {
|
2022-03-25 23:23:00 +08:00
|
|
|
"type": "git",
|
2023-12-20 20:21:26 +08:00
|
|
|
"url": "https://github.com/element-hq/element-web"
|
2022-07-28 20:03:38 +08:00
|
|
|
},
|
2020-01-16 04:00:50 +08:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"files": [
|
2022-12-09 20:28:29 +08:00
|
|
|
"lib",
|
2021-10-01 22:48:57 +08:00
|
|
|
"res",
|
2022-12-09 20:28:29 +08:00
|
|
|
"src",
|
2020-01-09 07:09:26 +08:00
|
|
|
"webpack.config.js",
|
|
|
|
"scripts",
|
2022-12-09 20:28:29 +08:00
|
|
|
"docs",
|
2020-01-09 07:09:26 +08:00
|
|
|
"release.sh",
|
|
|
|
"deploy",
|
|
|
|
"CHANGELOG.md",
|
2021-10-01 22:48:57 +08:00
|
|
|
"CONTRIBUTING.rst",
|
2020-01-09 07:09:26 +08:00
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
2021-10-01 22:48:57 +08:00
|
|
|
"AUTHORS.rst",
|
2020-02-05 22:28:44 +08:00
|
|
|
"package.json",
|
2021-10-01 22:48:57 +08:00
|
|
|
"contribute.json"
|
2020-01-16 04:00:50 +08:00
|
|
|
],
|
2022-07-15 21:53:21 +08:00
|
|
|
"style": "bundle.css",
|
2023-03-31 18:41:15 +08:00
|
|
|
"matrix_i18n_extra_translation_funcs": [
|
|
|
|
"UserFriendlyError"
|
|
|
|
],
|
2022-07-15 21:53:21 +08:00
|
|
|
"scripts": {
|
2023-09-06 00:17:25 +08:00
|
|
|
"i18n": "matrix-gen-i18n && yarn i18n:sort && yarn i18n:lint",
|
|
|
|
"i18n:sort": "jq --sort-keys '.' src/i18n/strings/en_EN.json > src/i18n/strings/en_EN.json.tmp && mv src/i18n/strings/en_EN.json.tmp src/i18n/strings/en_EN.json",
|
2024-01-03 01:53:39 +08:00
|
|
|
"i18n:lint": "prettier --log-level=silent --write src/i18n/strings/ --ignore-path /dev/null",
|
2023-09-06 00:17:25 +08:00
|
|
|
"i18n:diff": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
|
2020-01-16 05:06:55 +08:00
|
|
|
"clean": "rimraf lib webapp",
|
|
|
|
"build": "yarn clean && yarn build:genfiles && yarn build:bundle",
|
|
|
|
"build-stats": "yarn clean && yarn build:genfiles && yarn build:bundle-stats",
|
2023-09-08 17:33:57 +08:00
|
|
|
"build:res": "ts-node scripts/copy-res.ts",
|
2023-11-22 03:24:38 +08:00
|
|
|
"build:genfiles": "yarn build:res && yarn build:module_system",
|
2020-01-21 05:28:29 +08:00
|
|
|
"build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js",
|
2023-09-22 02:47:58 +08:00
|
|
|
"build:bundle": "webpack --progress --mode production",
|
|
|
|
"build:bundle-stats": "webpack --progress --mode production --json > webpack-stats.json",
|
2023-11-20 03:38:51 +08:00
|
|
|
"build:module_system": "ts-node --project ./tsconfig.module_system.json module_system/scripts/install.ts",
|
2021-05-07 12:14:33 +08:00
|
|
|
"dist": "scripts/package.sh",
|
2023-11-22 03:24:38 +08:00
|
|
|
"start": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n modules,res \"yarn build:module_system\" \"yarn build:res\" && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"",
|
2021-07-13 03:51:22 +08:00
|
|
|
"start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"",
|
2023-11-16 04:43:00 +08:00
|
|
|
"start:res": "ts-node scripts/copy-res.ts -w",
|
2023-09-24 03:34:56 +08:00
|
|
|
"start:js": "webpack serve --output-path webapp --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js --mode development",
|
2023-11-22 02:45:44 +08:00
|
|
|
"lint": "yarn lint:types && yarn lint:js && yarn lint:style && yarn lint:workflows",
|
2023-03-01 22:44:03 +08:00
|
|
|
"lint:js": "yarn lint:js:src && yarn lint:js:module_system",
|
|
|
|
"lint:js:src": "eslint --max-warnings 0 src test && prettier --check .",
|
|
|
|
"lint:js:module_system": "eslint --max-warnings 0 --config .eslintrc-module_system.js module_system",
|
|
|
|
"lint:js-fix": "yarn lint:js-fix:src && yarn lint:js-fix:module_system",
|
2024-01-03 01:53:39 +08:00
|
|
|
"lint:js-fix:src": "prettier --log-level=warn --write . && eslint --fix src test",
|
2023-03-01 22:44:03 +08:00
|
|
|
"lint:js-fix:module_system": "eslint --fix --config .eslintrc-module_system.js module_system",
|
|
|
|
"lint:types": "yarn lint:types:src && yarn lint:types:module_system",
|
|
|
|
"lint:types:src": "tsc --noEmit --jsx react",
|
|
|
|
"lint:types:module_system": "tsc --noEmit --project ./tsconfig.module_system.json",
|
2021-07-27 17:15:51 +08:00
|
|
|
"lint:style": "stylelint \"res/css/**/*.pcss\"",
|
2023-11-22 02:45:44 +08:00
|
|
|
"lint:workflows": "find .github/workflows -type f \\( -iname '*.yaml' -o -iname '*.yml' \\) | xargs -I {} sh -c 'echo \"Linting {}\"; action-validator \"{}\"'",
|
2021-08-09 13:16:27 +08:00
|
|
|
"test": "jest",
|
|
|
|
"coverage": "yarn test --coverage",
|
2023-08-18 15:34:56 +08:00
|
|
|
"analyse:unused-exports": "ts-node ./scripts/analyse_unused_exports.ts",
|
2023-11-22 03:24:38 +08:00
|
|
|
"analyse:webpack-bundles": "webpack-bundle-analyzer webpack-stats.json webapp",
|
|
|
|
"update:jitsi": "curl -s https://meet.element.io/libs/external_api.min.js > ./res/jitsi_external_api.min.js"
|
2020-01-16 04:00:50 +08:00
|
|
|
},
|
2023-03-01 17:12:23 +08:00
|
|
|
"resolutions": {
|
2024-05-01 20:11:46 +08:00
|
|
|
"@types/react-dom": "17.0.25",
|
|
|
|
"@types/react": "17.0.80"
|
2023-03-01 17:12:23 +08:00
|
|
|
},
|
2020-01-16 04:00:50 +08:00
|
|
|
"dependencies": {
|
2023-10-28 05:37:23 +08:00
|
|
|
"@matrix-org/olm": "3.2.15",
|
2024-01-23 18:30:41 +08:00
|
|
|
"@matrix-org/react-sdk-module-api": "^2.3.0",
|
2024-01-20 00:42:44 +08:00
|
|
|
"jsrsasign": "^11.0.0",
|
2023-07-18 22:21:32 +08:00
|
|
|
"katex": "^0.16.0",
|
2023-09-06 00:17:25 +08:00
|
|
|
"lodash": "^4.17.21",
|
2024-07-08 20:20:06 +08:00
|
|
|
"matrix-js-sdk": "34.0.0",
|
2024-07-04 21:01:06 +08:00
|
|
|
"matrix-react-sdk": "3.102.0-rc.1",
|
2023-03-21 18:25:26 +08:00
|
|
|
"matrix-widget-api": "^1.3.1",
|
2021-09-16 00:12:16 +08:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2022-11-30 02:44:51 +08:00
|
|
|
"ua-parser-js": "^1.0.0"
|
2022-12-09 20:28:29 +08:00
|
|
|
},
|
2015-06-10 00:40:42 +08:00
|
|
|
"devDependencies": {
|
2024-03-05 22:43:40 +08:00
|
|
|
"@action-validator/cli": "^0.6.0",
|
|
|
|
"@action-validator/core": "^0.6.0",
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/core": "^7.12.10",
|
2021-06-30 20:24:16 +08:00
|
|
|
"@babel/eslint-parser": "^7.12.10",
|
|
|
|
"@babel/eslint-plugin": "^7.12.10",
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
2020-01-16 04:00:50 +08:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2024-06-18 23:33:22 +08:00
|
|
|
"@babel/plugin-transform-class-properties": "^7.12.1",
|
|
|
|
"@babel/plugin-transform-logical-assignment-operators": "^7.20.7",
|
|
|
|
"@babel/plugin-transform-nullish-coalescing-operator": "^7.12.1",
|
|
|
|
"@babel/plugin-transform-numeric-separator": "^7.12.7",
|
|
|
|
"@babel/plugin-transform-object-rest-spread": "^7.12.1",
|
|
|
|
"@babel/plugin-transform-optional-chaining": "^7.12.7",
|
2020-01-16 04:00:50 +08:00
|
|
|
"@babel/plugin-transform-runtime": "^7.12.10",
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/preset-env": "^7.12.11",
|
|
|
|
"@babel/preset-react": "^7.12.10",
|
|
|
|
"@babel/preset-typescript": "^7.12.7",
|
|
|
|
"@babel/register": "^7.12.10",
|
|
|
|
"@babel/runtime": "^7.12.5",
|
2023-10-19 00:18:45 +08:00
|
|
|
"@casualbot/jest-sonar-reporter": "2.2.7",
|
2021-04-22 19:09:50 +08:00
|
|
|
"@principalstudio/html-webpack-inject-preload": "^1.2.7",
|
2023-09-24 03:34:56 +08:00
|
|
|
"@sentry/webpack-plugin": "^2.7.1",
|
2024-03-13 02:51:51 +08:00
|
|
|
"@svgr/webpack": "^8.0.0",
|
2022-09-23 16:42:03 +08:00
|
|
|
"@testing-library/react": "^12.1.5",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/commonmark": "^0.27.9",
|
|
|
|
"@types/content-type": "^1.1.8",
|
|
|
|
"@types/counterpart": "^0.18.4",
|
|
|
|
"@types/diff-match-patch": "^1.0.36",
|
|
|
|
"@types/escape-html": "^1.0.4",
|
|
|
|
"@types/file-saver": "^2.0.7",
|
|
|
|
"@types/glob-to-regexp": "^0.4.4",
|
2022-09-07 16:13:01 +08:00
|
|
|
"@types/jest": "^29.0.0",
|
2023-04-25 16:36:17 +08:00
|
|
|
"@types/jitsi-meet": "^2.0.2",
|
2022-10-26 23:41:58 +08:00
|
|
|
"@types/jsrsasign": "^10.5.4",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/katex": "^0.16.7",
|
2023-09-06 00:17:25 +08:00
|
|
|
"@types/lodash": "^4.14.197",
|
2023-12-13 17:36:21 +08:00
|
|
|
"@types/minimist": "^1.2.5",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/modernizr": "^3.5.6",
|
2020-01-16 04:00:50 +08:00
|
|
|
"@types/node": "^16",
|
2023-08-18 15:34:56 +08:00
|
|
|
"@types/node-fetch": "^2.6.4",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/pako": "^2.0.3",
|
|
|
|
"@types/qrcode": "^1.5.5",
|
2024-05-01 20:11:46 +08:00
|
|
|
"@types/react": "17.0.80",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/react-beautiful-dnd": "^13.1.7",
|
2024-05-01 20:11:46 +08:00
|
|
|
"@types/react-dom": "17.0.25",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/react-transition-group": "^4.4.9",
|
|
|
|
"@types/sanitize-html": "^2.9.5",
|
|
|
|
"@types/sdp-transform": "^2.4.9",
|
2024-05-15 22:51:11 +08:00
|
|
|
"@types/semver": "^7.5.8",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/tar-js": "^0.3.5",
|
2020-01-16 04:00:50 +08:00
|
|
|
"@types/ua-parser-js": "^0.7.36",
|
2023-11-29 01:26:07 +08:00
|
|
|
"@types/uuid": "^9.0.7",
|
2024-02-22 02:40:41 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
|
|
"@typescript-eslint/parser": "^7.0.0",
|
2022-09-07 16:13:01 +08:00
|
|
|
"babel-jest": "^29.0.0",
|
2023-12-13 19:29:45 +08:00
|
|
|
"babel-loader": "^9.0.0",
|
2024-01-05 18:46:39 +08:00
|
|
|
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
|
2023-09-24 03:34:56 +08:00
|
|
|
"buffer": "^6.0.3",
|
2021-01-27 22:10:51 +08:00
|
|
|
"chokidar": "^3.5.1",
|
2023-04-06 00:18:20 +08:00
|
|
|
"concurrently": "^8.0.0",
|
2024-01-11 19:04:02 +08:00
|
|
|
"copy-webpack-plugin": "^12.0.0",
|
2023-11-06 20:59:38 +08:00
|
|
|
"cronstrue": "^2.41.0",
|
2024-04-16 20:46:06 +08:00
|
|
|
"css-loader": "^7.0.0",
|
2024-05-15 18:25:54 +08:00
|
|
|
"css-minimizer-webpack-plugin": "^7.0.0",
|
2022-09-10 11:03:46 +08:00
|
|
|
"dotenv": "^16.0.2",
|
2024-03-05 22:43:40 +08:00
|
|
|
"eslint": "8.57.0",
|
2021-06-30 20:24:16 +08:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2023-08-08 22:42:50 +08:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2024-06-11 22:03:08 +08:00
|
|
|
"eslint-plugin-deprecate": "0.8.5",
|
2023-03-01 22:44:03 +08:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-matrix-org": "^1.0.0",
|
2022-02-24 17:27:25 +08:00
|
|
|
"eslint-plugin-react": "^7.28.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2024-05-15 18:26:28 +08:00
|
|
|
"eslint-plugin-unicorn": "^53.0.0",
|
2024-06-11 20:45:25 +08:00
|
|
|
"fake-indexeddb": "^6.0.0",
|
2023-11-16 06:05:29 +08:00
|
|
|
"fetch-mock": "9.11.0",
|
2022-10-13 01:59:10 +08:00
|
|
|
"fetch-mock-jest": "^1.5.1",
|
2022-11-30 02:44:51 +08:00
|
|
|
"file-loader": "^6.0.0",
|
2023-09-24 03:34:56 +08:00
|
|
|
"html-webpack-plugin": "^5.5.3",
|
2022-09-07 16:13:01 +08:00
|
|
|
"jest": "^29.0.0",
|
2023-07-13 17:09:04 +08:00
|
|
|
"jest-canvas-mock": "2.5.2",
|
2022-09-07 16:13:01 +08:00
|
|
|
"jest-environment-jsdom": "^29.0.0",
|
2022-10-05 05:18:56 +08:00
|
|
|
"jest-mock": "^29.0.0",
|
2021-07-27 17:15:51 +08:00
|
|
|
"jest-raw-loader": "^1.0.1",
|
2022-10-13 01:59:10 +08:00
|
|
|
"matrix-mock-request": "^2.5.0",
|
2024-02-29 18:43:50 +08:00
|
|
|
"matrix-web-i18n": "^3.2.1",
|
2024-03-06 00:35:59 +08:00
|
|
|
"mini-css-extract-plugin": "2.8.0",
|
2022-03-25 23:23:00 +08:00
|
|
|
"minimist": "^1.2.6",
|
2023-04-19 00:01:10 +08:00
|
|
|
"mkdirp": "^3.0.0",
|
2022-02-18 21:48:50 +08:00
|
|
|
"modernizr": "^3.12.0",
|
2022-01-25 05:51:33 +08:00
|
|
|
"node-fetch": "^2.6.7",
|
2024-02-23 18:05:00 +08:00
|
|
|
"postcss": "8.4.33",
|
2024-02-23 19:23:38 +08:00
|
|
|
"postcss-easings": "^4.0.0",
|
2024-03-07 19:38:08 +08:00
|
|
|
"postcss-hexrgba": "2.1.0",
|
2024-02-23 18:05:00 +08:00
|
|
|
"postcss-import": "16.0.0",
|
2024-03-06 00:35:59 +08:00
|
|
|
"postcss-loader": "8.1.0",
|
2024-03-13 02:53:34 +08:00
|
|
|
"postcss-mixins": "^10.0.0",
|
2024-02-23 19:23:51 +08:00
|
|
|
"postcss-nested": "^6.0.0",
|
2024-06-13 18:54:38 +08:00
|
|
|
"postcss-preset-env": "^9.5.14",
|
2022-09-07 23:44:26 +08:00
|
|
|
"postcss-scss": "^4.0.4",
|
2024-02-09 13:53:47 +08:00
|
|
|
"postcss-simple-vars": "^7.0.1",
|
2024-06-11 22:40:18 +08:00
|
|
|
"prettier": "3.3.2",
|
2023-09-24 03:34:56 +08:00
|
|
|
"process": "^0.11.10",
|
2021-07-27 17:15:51 +08:00
|
|
|
"raw-loader": "^4.0.2",
|
2023-04-19 05:32:19 +08:00
|
|
|
"rimraf": "^5.0.0",
|
2023-06-26 16:29:13 +08:00
|
|
|
"semver": "^7.5.2",
|
2022-11-30 02:44:51 +08:00
|
|
|
"string-replace-loader": "3",
|
2024-04-16 20:46:44 +08:00
|
|
|
"style-loader": "4",
|
2024-01-10 18:17:23 +08:00
|
|
|
"stylelint": "^16.1.0",
|
2024-01-10 02:25:53 +08:00
|
|
|
"stylelint-config-standard": "^36.0.0",
|
2023-12-13 17:36:21 +08:00
|
|
|
"stylelint-scss": "^6.0.0",
|
2023-09-24 03:34:56 +08:00
|
|
|
"terser-webpack-plugin": "^5.3.9",
|
2023-04-12 17:47:27 +08:00
|
|
|
"ts-node": "^10.9.1",
|
2022-07-13 16:04:32 +08:00
|
|
|
"ts-prune": "^0.10.3",
|
2024-04-30 23:08:20 +08:00
|
|
|
"typescript": "5.4.5",
|
2023-09-24 03:34:56 +08:00
|
|
|
"util": "^0.12.5",
|
2023-11-08 16:15:27 +08:00
|
|
|
"webpack": "^5.89.0",
|
2023-05-12 19:13:10 +08:00
|
|
|
"webpack-bundle-analyzer": "^4.8.0",
|
2024-01-03 01:49:09 +08:00
|
|
|
"webpack-cli": "^5.0.0",
|
2024-03-05 23:17:43 +08:00
|
|
|
"webpack-dev-server": "^5.0.0",
|
2023-11-06 20:59:38 +08:00
|
|
|
"yaml": "^2.3.3"
|
2022-12-09 20:28:29 +08:00
|
|
|
},
|
2022-11-03 22:54:21 +08:00
|
|
|
"@casualbot/jest-sonar-reporter": {
|
|
|
|
"outputDirectory": "coverage",
|
|
|
|
"outputName": "jest-sonar-report.xml",
|
|
|
|
"relativePaths": true
|
2015-06-10 00:40:42 +08:00
|
|
|
}
|
2024-03-13 03:55:48 +08:00
|
|
|
}
|