|
1 | 1 | {
|
2 |
| - "name": "schildichat-web", |
3 |
| - "version": "1.11.35-sc.0.test.1", |
4 |
| - "description": "A Matrix client based on Element with a more traditional instant messaging experience", |
5 |
| - "author": "SchildiChat", |
6 |
| - "repository": { |
7 |
| - "type": "git", |
8 |
| - "url": "https://github.com/SchildiChat/element-web" |
9 |
| - }, |
10 |
| - "license": "Apache-2.0", |
11 |
| - "files": [ |
12 |
| - "lib", |
13 |
| - "res", |
14 |
| - "src", |
15 |
| - "webpack.config.js", |
16 |
| - "scripts", |
17 |
| - "docs", |
18 |
| - "release.sh", |
19 |
| - "deploy", |
20 |
| - "CHANGELOG.md", |
21 |
| - "CONTRIBUTING.rst", |
22 |
| - "LICENSE", |
23 |
| - "README.md", |
24 |
| - "AUTHORS.rst", |
25 |
| - "package.json", |
26 |
| - "contribute.json" |
27 |
| - ], |
28 |
| - "style": "bundle.css", |
29 |
| - "matrix_i18n_extra_translation_funcs": [ |
30 |
| - "UserFriendlyError" |
31 |
| - ], |
32 |
| - "scripts": { |
33 |
| - "i18n": "matrix-gen-i18n", |
34 |
| - "prunei18n": "matrix-prune-i18n", |
35 |
| - "diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && matrix-gen-i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json", |
36 |
| - "clean": "rimraf lib webapp", |
37 |
| - "build": "yarn clean && yarn build:genfiles && yarn build:bundle", |
38 |
| - "build-stats": "yarn clean && yarn build:genfiles && yarn build:bundle-stats", |
39 |
| - "build:jitsi": "node scripts/build-jitsi.js", |
40 |
| - "build:res": "node scripts/copy-res.js", |
41 |
| - "build:genfiles": "yarn build:res && yarn build:jitsi && yarn build:module_system", |
42 |
| - "build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js", |
43 |
| - "build:bundle": "webpack --progress --bail --mode production", |
44 |
| - "build:bundle-stats": "webpack --progress --bail --mode production --json > webpack-stats.json", |
45 |
| - "build:module_system": "tsc --project ./tsconfig.module_system.json && node ./lib/module_system/scripts/install.js", |
46 |
| - "dist": "scripts/package.sh", |
47 |
| - "start": "yarn build:module_system && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"", |
48 |
| - "start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"", |
49 |
| - "start:res": "yarn build:jitsi && node scripts/copy-res.js -w", |
50 |
| - "start:js": "webpack-dev-server --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --mode development --disable-host-check --hot", |
51 |
| - "lint": "yarn lint:types && yarn lint:js && yarn lint:style", |
52 |
| - "lint:js": "yarn lint:js:src && yarn lint:js:module_system", |
53 |
| - "lint:js:src": "eslint --max-warnings 0 src test && prettier --check .", |
54 |
| - "lint:js:module_system": "eslint --max-warnings 0 --config .eslintrc-module_system.js module_system", |
55 |
| - "lint:js-fix": "yarn lint:js-fix:src && yarn lint:js-fix:module_system", |
56 |
| - "lint:js-fix:src": "prettier --write . && eslint --fix src test", |
57 |
| - "lint:js-fix:module_system": "eslint --fix --config .eslintrc-module_system.js module_system", |
58 |
| - "lint:types": "yarn lint:types:src && yarn lint:types:module_system", |
59 |
| - "lint:types:src": "tsc --noEmit --jsx react", |
60 |
| - "lint:types:module_system": "tsc --noEmit --project ./tsconfig.module_system.json", |
61 |
| - "lint:style": "stylelint \"res/css/**/*.pcss\"", |
62 |
| - "test": "jest", |
63 |
| - "coverage": "yarn test --coverage", |
64 |
| - "analyse:unused-exports": "node ./scripts/analyse_unused_exports.js", |
65 |
| - "analyse:webpack-bundles": "webpack-bundle-analyzer webpack-stats.json webapp" |
66 |
| - }, |
67 |
| - "resolutions": { |
68 |
| - "@types/react-dom": "17.0.19", |
69 |
| - "@types/react": "17.0.58" |
70 |
| - }, |
71 |
| - "dependencies": { |
72 |
| - "@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz", |
73 |
| - "@matrix-org/react-sdk-module-api": "^0.0.5", |
74 |
| - "gfm.css": "^1.1.2", |
75 |
| - "jsrsasign": "^10.5.25", |
76 |
| - "katex": "^0.16.0", |
77 |
| - "matrix-js-sdk": "26.2.0", |
78 |
| - "matrix-react-sdk": "3.75.0", |
79 |
| - "matrix-widget-api": "^1.3.1", |
80 |
| - "react": "17.0.2", |
81 |
| - "react-dom": "17.0.2", |
82 |
| - "sanitize-html": "^2.3.2", |
83 |
| - "ua-parser-js": "^1.0.0" |
84 |
| - }, |
85 |
| - "devDependencies": { |
86 |
| - "@babel/core": "^7.12.10", |
87 |
| - "@babel/eslint-parser": "^7.12.10", |
88 |
| - "@babel/eslint-plugin": "^7.12.10", |
89 |
| - "@babel/plugin-proposal-class-properties": "^7.12.1", |
90 |
| - "@babel/plugin-proposal-export-default-from": "^7.12.1", |
91 |
| - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", |
92 |
| - "@babel/plugin-proposal-numeric-separator": "^7.12.7", |
93 |
| - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", |
94 |
| - "@babel/plugin-proposal-optional-chaining": "^7.12.7", |
95 |
| - "@babel/plugin-syntax-dynamic-import": "^7.8.3", |
96 |
| - "@babel/plugin-transform-runtime": "^7.12.10", |
97 |
| - "@babel/preset-env": "^7.12.11", |
98 |
| - "@babel/preset-react": "^7.12.10", |
99 |
| - "@babel/preset-typescript": "^7.12.7", |
100 |
| - "@babel/register": "^7.12.10", |
101 |
| - "@babel/runtime": "^7.12.5", |
102 |
| - "@casualbot/jest-sonar-reporter": "^2.2.5", |
103 |
| - "@principalstudio/html-webpack-inject-preload": "^1.2.7", |
104 |
| - "@sentry/webpack-plugin": "^2.0.0", |
105 |
| - "@svgr/webpack": "^5.5.0", |
106 |
| - "@testing-library/react": "^12.1.5", |
107 |
| - "@types/jest": "^29.0.0", |
108 |
| - "@types/jitsi-meet": "^2.0.2", |
109 |
| - "@types/jsrsasign": "^10.5.4", |
110 |
| - "@types/modernizr": "^3.5.3", |
111 |
| - "@types/node": "^16", |
112 |
| - "@types/react": "17.0.58", |
113 |
| - "@types/react-dom": "17.0.19", |
114 |
| - "@types/sanitize-html": "^2.3.1", |
115 |
| - "@types/ua-parser-js": "^0.7.36", |
116 |
| - "@typescript-eslint/eslint-plugin": "^5.45.0", |
117 |
| - "@typescript-eslint/parser": "^5.45.0", |
118 |
| - "allchange": "^1.0.6", |
119 |
| - "babel-jest": "^29.0.0", |
120 |
| - "babel-loader": "^8.2.2", |
121 |
| - "chokidar": "^3.5.1", |
122 |
| - "concurrently": "^8.0.0", |
123 |
| - "cpx": "^1.5.0", |
124 |
| - "css-loader": "^4", |
125 |
| - "dotenv": "^16.0.2", |
126 |
| - "eslint": "8.41.0", |
127 |
| - "eslint-config-google": "^0.14.0", |
128 |
| - "eslint-config-prettier": "^8.5.0", |
129 |
| - "eslint-plugin-deprecate": "^0.7.0", |
130 |
| - "eslint-plugin-import": "^2.26.0", |
131 |
| - "eslint-plugin-matrix-org": "^1.0.0", |
132 |
| - "eslint-plugin-react": "^7.28.0", |
133 |
| - "eslint-plugin-react-hooks": "^4.3.0", |
134 |
| - "eslint-plugin-unicorn": "^47.0.0", |
135 |
| - "extract-text-webpack-plugin": "^4.0.0-beta.0", |
136 |
| - "fake-indexeddb": "^4.0.0", |
137 |
| - "fetch-mock-jest": "^1.5.1", |
138 |
| - "file-loader": "^6.0.0", |
139 |
| - "fs-extra": "^11.0.0", |
140 |
| - "html-webpack-plugin": "^4.5.2", |
141 |
| - "jest": "^29.0.0", |
142 |
| - "jest-canvas-mock": "2.5.1", |
143 |
| - "jest-environment-jsdom": "^29.0.0", |
144 |
| - "jest-mock": "^29.0.0", |
145 |
| - "jest-raw-loader": "^1.0.1", |
146 |
| - "json-loader": "^0.5.7", |
147 |
| - "loader-utils": "^3.0.0", |
148 |
| - "matrix-mock-request": "^2.5.0", |
149 |
| - "matrix-web-i18n": "^1.4.0", |
150 |
| - "mini-css-extract-plugin": "^1", |
151 |
| - "minimist": "^1.2.6", |
152 |
| - "mkdirp": "^3.0.0", |
153 |
| - "modernizr": "^3.12.0", |
154 |
| - "node-fetch": "^2.6.7", |
155 |
| - "optimize-css-assets-webpack-plugin": "^6.0.0", |
156 |
| - "postcss": "^8.4.16", |
157 |
| - "postcss-easings": "^2.0.0", |
158 |
| - "postcss-hexrgba": "2.0.1", |
159 |
| - "postcss-import": "^12.0.1", |
160 |
| - "postcss-loader": "^3.0.0", |
161 |
| - "postcss-mixins": "^6.2.3", |
162 |
| - "postcss-nested": "^4.2.3", |
163 |
| - "postcss-preset-env": "^6.7.0", |
164 |
| - "postcss-scss": "^4.0.4", |
165 |
| - "postcss-simple-vars": "^5.0.2", |
166 |
| - "prettier": "2.8.8", |
167 |
| - "raw-loader": "^4.0.2", |
168 |
| - "rimraf": "^5.0.0", |
169 |
| - "semver": "^7.5.2", |
170 |
| - "simple-proxy-agent": "^1.1.0", |
171 |
| - "string-replace-loader": "3", |
172 |
| - "style-loader": "2", |
173 |
| - "stylelint": "^15.3.0", |
174 |
| - "stylelint-config-standard": "^33.0.0", |
175 |
| - "stylelint-scss": "^5.0.0", |
176 |
| - "terser-webpack-plugin": "^4.0.0", |
177 |
| - "ts-node": "^10.9.1", |
178 |
| - "ts-prune": "^0.10.3", |
179 |
| - "typescript": "5.0.4", |
180 |
| - "webpack": "^4.46.0", |
181 |
| - "webpack-bundle-analyzer": "^4.8.0", |
182 |
| - "webpack-cli": "^3.3.12", |
183 |
| - "webpack-dev-server": "^3.11.2", |
184 |
| - "worker-loader": "^3.0.0", |
185 |
| - "worklet-loader": "^2.0.0", |
186 |
| - "yaml": "^2.0.1" |
187 |
| - }, |
188 |
| - "@casualbot/jest-sonar-reporter": { |
189 |
| - "outputDirectory": "coverage", |
190 |
| - "outputName": "jest-sonar-report.xml", |
191 |
| - "relativePaths": true |
192 |
| - } |
| 2 | + "name": "element-web", |
| 3 | + "version": "1.11.35", |
| 4 | + "description": "A feature-rich client for Matrix.org", |
| 5 | + "author": "New Vector Ltd.", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "https://github.com/vector-im/element-web" |
| 9 | + }, |
| 10 | + "license": "Apache-2.0", |
| 11 | + "files": [ |
| 12 | + "lib", |
| 13 | + "res", |
| 14 | + "src", |
| 15 | + "webpack.config.js", |
| 16 | + "scripts", |
| 17 | + "docs", |
| 18 | + "release.sh", |
| 19 | + "deploy", |
| 20 | + "CHANGELOG.md", |
| 21 | + "CONTRIBUTING.rst", |
| 22 | + "LICENSE", |
| 23 | + "README.md", |
| 24 | + "AUTHORS.rst", |
| 25 | + "package.json", |
| 26 | + "contribute.json" |
| 27 | + ], |
| 28 | + "style": "bundle.css", |
| 29 | + "matrix_i18n_extra_translation_funcs": [ |
| 30 | + "UserFriendlyError" |
| 31 | + ], |
| 32 | + "scripts": { |
| 33 | + "i18n": "matrix-gen-i18n", |
| 34 | + "prunei18n": "matrix-prune-i18n", |
| 35 | + "diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && matrix-gen-i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json", |
| 36 | + "clean": "rimraf lib webapp", |
| 37 | + "build": "yarn clean && yarn build:genfiles && yarn build:bundle", |
| 38 | + "build-stats": "yarn clean && yarn build:genfiles && yarn build:bundle-stats", |
| 39 | + "build:jitsi": "node scripts/build-jitsi.js", |
| 40 | + "build:res": "node scripts/copy-res.js", |
| 41 | + "build:genfiles": "yarn build:res && yarn build:jitsi && yarn build:module_system", |
| 42 | + "build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js", |
| 43 | + "build:bundle": "webpack --progress --bail --mode production", |
| 44 | + "build:bundle-stats": "webpack --progress --bail --mode production --json > webpack-stats.json", |
| 45 | + "build:module_system": "tsc --project ./tsconfig.module_system.json && node ./lib/module_system/scripts/install.js", |
| 46 | + "dist": "scripts/package.sh", |
| 47 | + "start": "yarn build:module_system && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"", |
| 48 | + "start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"", |
| 49 | + "start:res": "yarn build:jitsi && node scripts/copy-res.js -w", |
| 50 | + "start:js": "webpack-dev-server --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --mode development --disable-host-check --hot", |
| 51 | + "lint": "yarn lint:types && yarn lint:js && yarn lint:style", |
| 52 | + "lint:js": "yarn lint:js:src && yarn lint:js:module_system", |
| 53 | + "lint:js:src": "eslint --max-warnings 0 src test && prettier --check .", |
| 54 | + "lint:js:module_system": "eslint --max-warnings 0 --config .eslintrc-module_system.js module_system", |
| 55 | + "lint:js-fix": "yarn lint:js-fix:src && yarn lint:js-fix:module_system", |
| 56 | + "lint:js-fix:src": "prettier --write . && eslint --fix src test", |
| 57 | + "lint:js-fix:module_system": "eslint --fix --config .eslintrc-module_system.js module_system", |
| 58 | + "lint:types": "yarn lint:types:src && yarn lint:types:module_system", |
| 59 | + "lint:types:src": "tsc --noEmit --jsx react", |
| 60 | + "lint:types:module_system": "tsc --noEmit --project ./tsconfig.module_system.json", |
| 61 | + "lint:style": "stylelint \"res/css/**/*.pcss\"", |
| 62 | + "test": "jest", |
| 63 | + "coverage": "yarn test --coverage", |
| 64 | + "analyse:unused-exports": "node ./scripts/analyse_unused_exports.js", |
| 65 | + "analyse:webpack-bundles": "webpack-bundle-analyzer webpack-stats.json webapp" |
| 66 | + }, |
| 67 | + "resolutions": { |
| 68 | + "@types/react-dom": "17.0.19", |
| 69 | + "@types/react": "17.0.58" |
| 70 | + }, |
| 71 | + "dependencies": { |
| 72 | + "@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.14.tgz", |
| 73 | + "@matrix-org/react-sdk-module-api": "^0.0.5", |
| 74 | + "gfm.css": "^1.1.2", |
| 75 | + "jsrsasign": "^10.5.25", |
| 76 | + "katex": "^0.16.0", |
| 77 | + "matrix-js-sdk": "26.2.0", |
| 78 | + "matrix-react-sdk": "3.75.0", |
| 79 | + "matrix-widget-api": "^1.3.1", |
| 80 | + "react": "17.0.2", |
| 81 | + "react-dom": "17.0.2", |
| 82 | + "sanitize-html": "^2.3.2", |
| 83 | + "ua-parser-js": "^1.0.0" |
| 84 | + }, |
| 85 | + "devDependencies": { |
| 86 | + "@babel/core": "^7.12.10", |
| 87 | + "@babel/eslint-parser": "^7.12.10", |
| 88 | + "@babel/eslint-plugin": "^7.12.10", |
| 89 | + "@babel/plugin-proposal-class-properties": "^7.12.1", |
| 90 | + "@babel/plugin-proposal-export-default-from": "^7.12.1", |
| 91 | + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", |
| 92 | + "@babel/plugin-proposal-numeric-separator": "^7.12.7", |
| 93 | + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", |
| 94 | + "@babel/plugin-proposal-optional-chaining": "^7.12.7", |
| 95 | + "@babel/plugin-syntax-dynamic-import": "^7.8.3", |
| 96 | + "@babel/plugin-transform-runtime": "^7.12.10", |
| 97 | + "@babel/preset-env": "^7.12.11", |
| 98 | + "@babel/preset-react": "^7.12.10", |
| 99 | + "@babel/preset-typescript": "^7.12.7", |
| 100 | + "@babel/register": "^7.12.10", |
| 101 | + "@babel/runtime": "^7.12.5", |
| 102 | + "@casualbot/jest-sonar-reporter": "^2.2.5", |
| 103 | + "@principalstudio/html-webpack-inject-preload": "^1.2.7", |
| 104 | + "@sentry/webpack-plugin": "^2.0.0", |
| 105 | + "@svgr/webpack": "^5.5.0", |
| 106 | + "@testing-library/react": "^12.1.5", |
| 107 | + "@types/jest": "^29.0.0", |
| 108 | + "@types/jitsi-meet": "^2.0.2", |
| 109 | + "@types/jsrsasign": "^10.5.4", |
| 110 | + "@types/modernizr": "^3.5.3", |
| 111 | + "@types/node": "^16", |
| 112 | + "@types/react": "17.0.58", |
| 113 | + "@types/react-dom": "17.0.19", |
| 114 | + "@types/sanitize-html": "^2.3.1", |
| 115 | + "@types/ua-parser-js": "^0.7.36", |
| 116 | + "@typescript-eslint/eslint-plugin": "^5.45.0", |
| 117 | + "@typescript-eslint/parser": "^5.45.0", |
| 118 | + "allchange": "^1.0.6", |
| 119 | + "babel-jest": "^29.0.0", |
| 120 | + "babel-loader": "^8.2.2", |
| 121 | + "chokidar": "^3.5.1", |
| 122 | + "concurrently": "^8.0.0", |
| 123 | + "cpx": "^1.5.0", |
| 124 | + "css-loader": "^4", |
| 125 | + "dotenv": "^16.0.2", |
| 126 | + "eslint": "8.41.0", |
| 127 | + "eslint-config-google": "^0.14.0", |
| 128 | + "eslint-config-prettier": "^8.5.0", |
| 129 | + "eslint-plugin-deprecate": "^0.7.0", |
| 130 | + "eslint-plugin-import": "^2.26.0", |
| 131 | + "eslint-plugin-matrix-org": "^1.0.0", |
| 132 | + "eslint-plugin-react": "^7.28.0", |
| 133 | + "eslint-plugin-react-hooks": "^4.3.0", |
| 134 | + "eslint-plugin-unicorn": "^47.0.0", |
| 135 | + "extract-text-webpack-plugin": "^4.0.0-beta.0", |
| 136 | + "fake-indexeddb": "^4.0.0", |
| 137 | + "fetch-mock-jest": "^1.5.1", |
| 138 | + "file-loader": "^6.0.0", |
| 139 | + "fs-extra": "^11.0.0", |
| 140 | + "html-webpack-plugin": "^4.5.2", |
| 141 | + "jest": "^29.0.0", |
| 142 | + "jest-canvas-mock": "2.5.1", |
| 143 | + "jest-environment-jsdom": "^29.0.0", |
| 144 | + "jest-mock": "^29.0.0", |
| 145 | + "jest-raw-loader": "^1.0.1", |
| 146 | + "json-loader": "^0.5.7", |
| 147 | + "loader-utils": "^3.0.0", |
| 148 | + "matrix-mock-request": "^2.5.0", |
| 149 | + "matrix-web-i18n": "^1.4.0", |
| 150 | + "mini-css-extract-plugin": "^1", |
| 151 | + "minimist": "^1.2.6", |
| 152 | + "mkdirp": "^3.0.0", |
| 153 | + "modernizr": "^3.12.0", |
| 154 | + "node-fetch": "^2.6.7", |
| 155 | + "optimize-css-assets-webpack-plugin": "^6.0.0", |
| 156 | + "postcss": "^8.4.16", |
| 157 | + "postcss-easings": "^2.0.0", |
| 158 | + "postcss-hexrgba": "2.0.1", |
| 159 | + "postcss-import": "^12.0.1", |
| 160 | + "postcss-loader": "^3.0.0", |
| 161 | + "postcss-mixins": "^6.2.3", |
| 162 | + "postcss-nested": "^4.2.3", |
| 163 | + "postcss-preset-env": "^6.7.0", |
| 164 | + "postcss-scss": "^4.0.4", |
| 165 | + "postcss-simple-vars": "^5.0.2", |
| 166 | + "prettier": "2.8.8", |
| 167 | + "raw-loader": "^4.0.2", |
| 168 | + "rimraf": "^5.0.0", |
| 169 | + "semver": "^7.5.2", |
| 170 | + "simple-proxy-agent": "^1.1.0", |
| 171 | + "string-replace-loader": "3", |
| 172 | + "style-loader": "2", |
| 173 | + "stylelint": "^15.3.0", |
| 174 | + "stylelint-config-standard": "^33.0.0", |
| 175 | + "stylelint-scss": "^5.0.0", |
| 176 | + "terser-webpack-plugin": "^4.0.0", |
| 177 | + "ts-node": "^10.9.1", |
| 178 | + "ts-prune": "^0.10.3", |
| 179 | + "typescript": "5.0.4", |
| 180 | + "webpack": "^4.46.0", |
| 181 | + "webpack-bundle-analyzer": "^4.8.0", |
| 182 | + "webpack-cli": "^3.3.12", |
| 183 | + "webpack-dev-server": "^3.11.2", |
| 184 | + "worker-loader": "^3.0.0", |
| 185 | + "worklet-loader": "^2.0.0", |
| 186 | + "yaml": "^2.0.1" |
| 187 | + }, |
| 188 | + "@casualbot/jest-sonar-reporter": { |
| 189 | + "outputDirectory": "coverage", |
| 190 | + "outputName": "jest-sonar-report.xml", |
| 191 | + "relativePaths": true |
| 192 | + } |
193 | 193 | }
|
0 commit comments