2015-06-10 00:40:42 +08:00
|
|
|
{
|
2022-12-22 01:50:31 +08:00
|
|
|
"name": "matrix-react-sdk",
|
2024-06-18 20:13:47 +08:00
|
|
|
"version": "3.101.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"description": "SDK for matrix.org using React",
|
|
|
|
"author": "matrix.org",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/matrix-org/matrix-react-sdk"
|
2022-12-22 01:15:53 +08:00
|
|
|
},
|
2022-12-22 01:50:31 +08:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"res",
|
|
|
|
"src",
|
|
|
|
"scripts",
|
|
|
|
"git-revision.txt",
|
|
|
|
"docs",
|
|
|
|
"header",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"CONTRIBUTING.rst",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"package.json",
|
|
|
|
".stylelintrc.js"
|
2022-12-22 01:17:53 +08:00
|
|
|
],
|
2024-07-09 20:21:45 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">=20.0.0"
|
|
|
|
},
|
2024-06-18 20:15:06 +08:00
|
|
|
"main": "./src/index.ts",
|
2022-12-22 01:50:31 +08:00
|
|
|
"matrix_src_main": "./src/index.ts",
|
|
|
|
"matrix_lib_main": "./lib/index.ts",
|
|
|
|
"matrix_lib_typings": "./lib/index.d.ts",
|
|
|
|
"matrix_i18n_extra_translation_funcs": [
|
2023-03-31 15:30:43 +08:00
|
|
|
"UserFriendlyError"
|
2022-12-22 01:17:53 +08:00
|
|
|
],
|
2022-12-22 01:50:31 +08:00
|
|
|
"scripts": {
|
2024-02-01 19:25:58 +08:00
|
|
|
"prepack": "yarn build",
|
2023-10-04 17:28:09 +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 02:56:39 +08:00
|
|
|
"i18n:lint": "matrix-i18n-lint && prettier --log-level=silent --write src/i18n/strings/ --ignore-path /dev/null",
|
2023-10-04 17:28:09 +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",
|
2022-12-22 01:50:31 +08:00
|
|
|
"make-component": "node scripts/make-react-component.js",
|
|
|
|
"rethemendex": "res/css/rethemendex.sh",
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"build": "yarn clean && git rev-parse HEAD > git-revision.txt && yarn build:compile && yarn build:types",
|
|
|
|
"build:compile": "babel -d lib --verbose --extensions \".ts,.js,.tsx\" src",
|
|
|
|
"build:types": "tsc --emitDeclarationOnly --jsx react",
|
|
|
|
"start": "echo THIS IS FOR LEGACY PURPOSES ONLY. && yarn start:all",
|
|
|
|
"start:all": "echo THIS IS FOR LEGACY PURPOSES ONLY. && yarn start:build",
|
|
|
|
"start:build": "babel src -w -s -d lib --verbose --extensions \".ts,.js\"",
|
2023-11-22 23:23:29 +08:00
|
|
|
"lint": "yarn lint:types && yarn lint:js && yarn lint:style && yarn lint:workflows",
|
2024-01-16 17:48:49 +08:00
|
|
|
"lint:js": "eslint --max-warnings 0 src test playwright && prettier --check .",
|
|
|
|
"lint:js-fix": "eslint --fix src test playwright && prettier --log-level=warn --write .",
|
|
|
|
"lint:types": "tsc --noEmit --jsx react && tsc --noEmit --jsx react -p playwright",
|
2022-12-22 01:50:31 +08:00
|
|
|
"lint:style": "stylelint \"res/css/**/*.pcss\"",
|
|
|
|
"test": "jest",
|
2023-11-22 01:33:32 +08:00
|
|
|
"test:playwright": "playwright test",
|
|
|
|
"test:playwright:open": "yarn test:playwright --ui",
|
2023-12-06 18:13:48 +08:00
|
|
|
"test:playwright:screenshots": "yarn test:playwright:screenshots:build && yarn test:playwright:screenshots:run",
|
|
|
|
"test:playwright:screenshots:build": "docker build playwright -t matrix-react-sdk-playwright",
|
2024-06-26 17:34:15 +08:00
|
|
|
"test:playwright:screenshots:run": "docker run --rm --network host -e BASE_URL -v $(pwd)/../:/work/ -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/:/tmp/ -it matrix-react-sdk-playwright",
|
2023-11-23 17:09:32 +08:00
|
|
|
"coverage": "yarn test --coverage",
|
|
|
|
"lint:workflows": "find .github/workflows -type f \\( -iname '*.yaml' -o -iname '*.yml' \\) | xargs -I {} sh -c 'echo \"Linting {}\"; action-validator \"{}\"'"
|
2022-12-22 01:50:31 +08:00
|
|
|
},
|
2023-03-01 17:12:14 +08:00
|
|
|
"resolutions": {
|
2024-05-01 20:11:43 +08:00
|
|
|
"@types/react-dom": "17.0.25",
|
|
|
|
"@types/react": "17.0.80",
|
2024-06-19 18:46:47 +08:00
|
|
|
"@types/seedrandom": "3.0.8",
|
2024-02-20 00:58:59 +08:00
|
|
|
"oidc-client-ts": "3.0.1",
|
2024-06-19 20:34:55 +08:00
|
|
|
"jwt-decode": "4.0.0",
|
2024-07-02 16:39:22 +08:00
|
|
|
"@floating-ui/react": "0.26.11",
|
2024-07-30 00:05:34 +08:00
|
|
|
"@radix-ui/react-id": "1.1.0",
|
|
|
|
"caniuse-lite": "1.0.30001643",
|
|
|
|
"electron-to-chromium": "1.5.2"
|
2023-03-01 17:12:14 +08:00
|
|
|
},
|
2022-12-22 01:50:31 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@babel/runtime": "^7.12.5",
|
2024-07-10 17:22:59 +08:00
|
|
|
"@matrix-org/analytics-events": "^0.24.0",
|
2023-08-22 03:06:40 +08:00
|
|
|
"@matrix-org/emojibase-bindings": "^1.1.2",
|
2024-06-25 22:15:55 +08:00
|
|
|
"@matrix-org/matrix-wysiwyg": "2.37.4",
|
2024-04-12 23:15:17 +08:00
|
|
|
"@matrix-org/react-sdk-module-api": "^2.4.0",
|
2023-08-21 16:15:22 +08:00
|
|
|
"@matrix-org/spec": "^1.7.0",
|
2024-06-11 22:21:31 +08:00
|
|
|
"@sentry/browser": "^8.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@testing-library/react-hooks": "^8.0.1",
|
2024-07-24 17:49:33 +08:00
|
|
|
"@vector-im/compound-design-tokens": "^1.6.1",
|
2024-07-16 17:03:35 +08:00
|
|
|
"@vector-im/compound-web": "^5.4.0",
|
2023-09-20 05:34:41 +08:00
|
|
|
"@zxcvbn-ts/core": "^3.0.4",
|
|
|
|
"@zxcvbn-ts/language-common": "^3.0.4",
|
|
|
|
"@zxcvbn-ts/language-en": "^3.0.2",
|
2022-12-22 01:50:31 +08:00
|
|
|
"await-lock": "^2.1.0",
|
2024-05-20 22:53:50 +08:00
|
|
|
"bloom-filters": "^3.0.1",
|
2023-10-13 21:39:28 +08:00
|
|
|
"blurhash": "^2.0.3",
|
2024-07-30 00:05:34 +08:00
|
|
|
"browserslist": "^4.23.2",
|
2022-12-22 01:50:31 +08:00
|
|
|
"classnames": "^2.2.6",
|
2024-02-22 18:11:25 +08:00
|
|
|
"commonmark": "^0.31.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"counterpart": "^0.18.6",
|
2024-07-15 18:33:41 +08:00
|
|
|
"css-tree": "^2.3.1",
|
2024-01-11 20:37:48 +08:00
|
|
|
"diff-dom": "^5.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"diff-match-patch": "^1.0.5",
|
2024-07-30 00:05:34 +08:00
|
|
|
"electron-to-chromium": "^1.5.2",
|
2024-06-19 17:20:49 +08:00
|
|
|
"emojibase-regex": "15.3.2",
|
2022-12-22 01:50:31 +08:00
|
|
|
"escape-html": "^1.0.3",
|
|
|
|
"file-saver": "^2.0.5",
|
2024-07-10 01:39:26 +08:00
|
|
|
"filesize": "10.1.4",
|
2024-06-14 00:27:37 +08:00
|
|
|
"github-markdown-css": "^5.5.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"glob-to-regexp": "^0.4.1",
|
|
|
|
"highlight.js": "^11.3.1",
|
|
|
|
"html-entities": "^2.0.0",
|
|
|
|
"is-ip": "^3.1.0",
|
2024-06-19 17:28:41 +08:00
|
|
|
"js-xxhash": "^4.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"jszip": "^3.7.0",
|
|
|
|
"katex": "^0.16.0",
|
2023-11-29 03:20:22 +08:00
|
|
|
"linkify-element": "4.1.3",
|
|
|
|
"linkify-react": "4.1.3",
|
|
|
|
"linkify-string": "4.1.3",
|
|
|
|
"linkifyjs": "4.1.3",
|
2022-12-22 01:50:31 +08:00
|
|
|
"lodash": "^4.17.20",
|
|
|
|
"maplibre-gl": "^2.0.0",
|
|
|
|
"matrix-encrypt-attachment": "^1.0.3",
|
2023-03-01 17:12:14 +08:00
|
|
|
"matrix-events-sdk": "0.0.1",
|
2024-06-18 20:15:19 +08:00
|
|
|
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
|
2023-08-03 18:14:15 +08:00
|
|
|
"matrix-widget-api": "^1.5.0",
|
2023-05-03 00:01:56 +08:00
|
|
|
"memoize-one": "^6.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"minimist": "^1.2.5",
|
2024-02-20 00:58:59 +08:00
|
|
|
"oidc-client-ts": "^3.0.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"opus-recorder": "^8.0.3",
|
|
|
|
"pako": "^2.0.3",
|
|
|
|
"png-chunks-extract": "^1.0.0",
|
2024-07-24 20:36:41 +08:00
|
|
|
"posthog-js": "1.149.1",
|
2023-05-17 15:41:34 +08:00
|
|
|
"qrcode": "1.5.3",
|
2022-12-22 01:50:31 +08:00
|
|
|
"re-resizable": "^6.9.0",
|
|
|
|
"react": "17.0.2",
|
|
|
|
"react-beautiful-dnd": "^13.1.0",
|
2023-03-07 01:21:09 +08:00
|
|
|
"react-blurhash": "^0.3.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"react-dom": "17.0.2",
|
|
|
|
"react-focus-lock": "^2.5.1",
|
|
|
|
"react-transition-group": "^4.4.1",
|
|
|
|
"rfc4648": "^1.4.0",
|
|
|
|
"sanitize-filename": "^1.6.3",
|
2024-04-03 19:45:37 +08:00
|
|
|
"sanitize-html": "2.13.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"tar-js": "^0.3.0",
|
2024-07-04 01:02:10 +08:00
|
|
|
"temporal-polyfill": "^0.2.5",
|
2022-12-22 01:50:31 +08:00
|
|
|
"ua-parser-js": "^1.0.2",
|
2024-06-11 20:54:10 +08:00
|
|
|
"uuid": "^10.0.0",
|
2023-09-20 05:34:41 +08:00
|
|
|
"what-input": "^5.2.10"
|
2022-12-22 01:50:31 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-03-06 01:56:10 +08:00
|
|
|
"@action-validator/cli": "^0.6.0",
|
|
|
|
"@action-validator/core": "^0.6.0",
|
2023-11-29 00:22:28 +08:00
|
|
|
"@axe-core/playwright": "^4.8.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@babel/cli": "^7.12.10",
|
|
|
|
"@babel/core": "^7.12.10",
|
|
|
|
"@babel/eslint-parser": "^7.12.10",
|
|
|
|
"@babel/eslint-plugin": "^7.12.10",
|
|
|
|
"@babel/parser": "^7.12.11",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
2024-06-19 16:47:47 +08:00
|
|
|
"@babel/plugin-transform-class-properties": "^7.12.1",
|
|
|
|
"@babel/plugin-transform-numeric-separator": "^7.12.7",
|
|
|
|
"@babel/plugin-transform-object-rest-spread": "^7.12.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@babel/plugin-transform-runtime": "^7.12.10",
|
|
|
|
"@babel/preset-env": "^7.12.11",
|
|
|
|
"@babel/preset-react": "^7.12.10",
|
|
|
|
"@babel/preset-typescript": "^7.12.7",
|
|
|
|
"@babel/register": "^7.12.10",
|
2023-10-19 00:18:13 +08:00
|
|
|
"@casualbot/jest-sonar-reporter": "2.2.7",
|
2023-04-06 20:17:50 +08:00
|
|
|
"@peculiar/webcrypto": "^1.4.3",
|
2023-12-15 22:30:59 +08:00
|
|
|
"@playwright/test": "^1.40.1",
|
2023-10-18 00:09:35 +08:00
|
|
|
"@testing-library/dom": "^9.0.0",
|
2023-08-23 22:22:30 +08:00
|
|
|
"@testing-library/jest-dom": "^6.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@testing-library/react": "^12.1.5",
|
|
|
|
"@testing-library/user-event": "^14.4.3",
|
|
|
|
"@types/commonmark": "^0.27.4",
|
2023-07-25 16:29:52 +08:00
|
|
|
"@types/content-type": "^1.1.5",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/counterpart": "^0.18.1",
|
2024-07-15 18:33:41 +08:00
|
|
|
"@types/css-tree": "^2.3.8",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/diff-match-patch": "^1.0.32",
|
|
|
|
"@types/escape-html": "^1.0.1",
|
2023-11-23 18:27:11 +08:00
|
|
|
"@types/express": "^4.17.21",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/file-saver": "^2.0.3",
|
2023-02-10 00:24:17 +08:00
|
|
|
"@types/fs-extra": "^11.0.0",
|
2023-02-13 19:39:16 +08:00
|
|
|
"@types/glob-to-regexp": "^0.4.1",
|
2024-02-03 01:33:16 +08:00
|
|
|
"@types/jest": "29.5.12",
|
2023-02-18 00:12:31 +08:00
|
|
|
"@types/katex": "^0.16.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/lodash": "^4.14.168",
|
|
|
|
"@types/modernizr": "^3.5.3",
|
2024-02-20 00:58:59 +08:00
|
|
|
"@types/node": "18",
|
2023-02-13 19:39:16 +08:00
|
|
|
"@types/node-fetch": "^2.6.2",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/pako": "^2.0.0",
|
|
|
|
"@types/qrcode": "^1.3.5",
|
2024-05-01 20:11:43 +08:00
|
|
|
"@types/react": "17.0.80",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/react-beautiful-dnd": "^13.0.0",
|
2024-05-01 20:11:43 +08:00
|
|
|
"@types/react-dom": "17.0.25",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/react-transition-group": "^4.4.0",
|
2024-02-22 03:05:09 +08:00
|
|
|
"@types/sanitize-html": "2.11.0",
|
2023-07-25 16:29:52 +08:00
|
|
|
"@types/sdp-transform": "^2.4.6",
|
2024-06-19 18:46:47 +08:00
|
|
|
"@types/seedrandom": "3.0.8",
|
2023-02-13 19:39:16 +08:00
|
|
|
"@types/tar-js": "^0.3.2",
|
2022-12-22 01:50:31 +08:00
|
|
|
"@types/ua-parser-js": "^0.7.36",
|
2024-06-25 22:20:43 +08:00
|
|
|
"@types/uuid": "^10.0.0",
|
2024-02-22 03:52:43 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
|
|
"@typescript-eslint/parser": "^7.0.0",
|
2024-05-16 06:01:31 +08:00
|
|
|
"axe-core": "4.9.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"babel-jest": "^29.0.0",
|
2024-07-24 18:02:47 +08:00
|
|
|
"blob-polyfill": "^9.0.0",
|
2024-03-06 01:56:10 +08:00
|
|
|
"eslint": "8.57.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2023-08-17 12:28:29 +08:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2024-05-30 23:47:57 +08:00
|
|
|
"eslint-plugin-deprecate": "0.8.5",
|
2022-12-22 01:50:31 +08:00
|
|
|
"eslint-plugin-import": "^2.25.4",
|
2024-04-16 23:27:21 +08:00
|
|
|
"eslint-plugin-jest": "^28.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
2023-09-08 01:40:51 +08:00
|
|
|
"eslint-plugin-matrix-org": "1.2.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"eslint-plugin-react": "^7.28.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2024-06-25 22:22:34 +08:00
|
|
|
"eslint-plugin-unicorn": "^54.0.0",
|
2023-08-14 19:08:12 +08:00
|
|
|
"express": "^4.18.2",
|
2024-06-11 20:58:30 +08:00
|
|
|
"fake-indexeddb": "^6.0.0",
|
2022-12-22 01:50:31 +08:00
|
|
|
"fetch-mock-jest": "^1.5.1",
|
|
|
|
"fs-extra": "^11.0.0",
|
2024-07-16 02:23:20 +08:00
|
|
|
"glob": "^11.0.0",
|
2023-08-16 18:20:48 +08:00
|
|
|
"jest": "^29.6.2",
|
|
|
|
"jest-canvas-mock": "^2.5.2",
|
|
|
|
"jest-environment-jsdom": "^29.6.2",
|
|
|
|
"jest-mock": "^29.6.2",
|
2022-12-22 01:50:31 +08:00
|
|
|
"jest-raw-loader": "^1.0.1",
|
2023-07-13 21:56:15 +08:00
|
|
|
"jsqr": "^1.4.0",
|
2023-08-15 23:14:53 +08:00
|
|
|
"mailhog": "^4.16.0",
|
2024-02-29 21:02:46 +08:00
|
|
|
"matrix-web-i18n": "^3.2.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"mocha-junit-reporter": "^2.2.0",
|
|
|
|
"node-fetch": "2",
|
2024-07-16 02:23:20 +08:00
|
|
|
"playwright-core": "^1.45.1",
|
2022-12-22 01:50:31 +08:00
|
|
|
"postcss-scss": "^4.0.4",
|
2024-07-24 18:53:13 +08:00
|
|
|
"prettier": "3.3.3",
|
2022-12-22 01:50:31 +08:00
|
|
|
"raw-loader": "^4.0.2",
|
2024-07-09 23:53:02 +08:00
|
|
|
"rimraf": "^6.0.0",
|
2024-01-10 18:42:30 +08:00
|
|
|
"stylelint": "^16.1.0",
|
|
|
|
"stylelint-config-standard": "^36.0.0",
|
2023-12-13 18:02:12 +08:00
|
|
|
"stylelint-scss": "^6.0.0",
|
2023-04-12 17:47:39 +08:00
|
|
|
"ts-node": "^10.9.1",
|
2024-07-24 17:58:07 +08:00
|
|
|
"typescript": "5.5.4",
|
2024-07-05 02:08:06 +08:00
|
|
|
"web-streams-polyfill": "^4.0.0"
|
2022-12-22 01:50:31 +08:00
|
|
|
},
|
2023-10-13 21:39:28 +08:00
|
|
|
"peerDependencies": {
|
|
|
|
"postcss": "^8.4.19",
|
|
|
|
"webpack": "^4.0.0 || ^5.0.0"
|
|
|
|
},
|
2022-12-22 01:50:31 +08:00
|
|
|
"@casualbot/jest-sonar-reporter": {
|
|
|
|
"outputDirectory": "coverage",
|
|
|
|
"outputName": "jest-sonar-report.xml",
|
|
|
|
"relativePaths": true
|
2024-06-18 20:15:06 +08:00
|
|
|
}
|
2015-06-10 00:40:42 +08:00
|
|
|
}
|