summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/matrix-widget-api/package.json
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-04-24 14:03:36 +0200
committerRaindropsSys <contact@minteck.org>2023-04-24 14:03:36 +0200
commit633c92eae865e957121e08de634aeee11a8b3992 (patch)
tree09d881bee1dae0b6eee49db1dfaf0f500240606c /includes/external/matrix/node_modules/matrix-widget-api/package.json
parentc4657e4509733699c0f26a3c900bab47e915d5a0 (diff)
downloadpluralconnect-633c92eae865e957121e08de634aeee11a8b3992.tar.gz
pluralconnect-633c92eae865e957121e08de634aeee11a8b3992.tar.bz2
pluralconnect-633c92eae865e957121e08de634aeee11a8b3992.zip
Updated 18 files, added 1692 files and deleted includes/system/compare.inc (automated)
Diffstat (limited to 'includes/external/matrix/node_modules/matrix-widget-api/package.json')
-rw-r--r--includes/external/matrix/node_modules/matrix-widget-api/package.json63
1 files changed, 63 insertions, 0 deletions
diff --git a/includes/external/matrix/node_modules/matrix-widget-api/package.json b/includes/external/matrix/node_modules/matrix-widget-api/package.json
new file mode 100644
index 0000000..8de81ab
--- /dev/null
+++ b/includes/external/matrix/node_modules/matrix-widget-api/package.json
@@ -0,0 +1,63 @@
+{
+ "name": "matrix-widget-api",
+ "version": "1.3.1",
+ "description": "Matrix Widget API SDK",
+ "main": "./lib/index.js",
+ "types": "./lib/index.d.ts",
+ "repository": "https://github.com/matrix-org/matrix-widget-api",
+ "author": "The Matrix.org Foundation C.I.C.",
+ "license": "Apache-2.0",
+ "scripts": {
+ "prepublishOnly": "yarn build",
+ "start": "tsc -w",
+ "clean": "rimraf lib dist",
+ "build": "yarn clean && yarn build:compile && yarn build:types && yarn build:browser",
+ "build:compile": "babel -d lib --verbose --extensions \".ts\" src",
+ "build:types": "tsc --emitDeclarationOnly",
+ "build:browser": "yarn build:browser:dev && yarn build:browser:prod",
+ "build:browser:dev": "browserify lib/index.js --debug --s mxwidgets -o dist/api.js",
+ "build:browser:prod": "browserify lib/index.js --s mxwidgets -p tinyify -o dist/api.min.js",
+ "lint": "yarn lint:types && yarn lint:ts",
+ "lint:ts": "eslint src test",
+ "lint:types": "tsc --noEmit",
+ "lint:fix": "eslint src test --fix",
+ "test": "jest"
+ },
+ "files": [
+ "src",
+ "lib",
+ "dist",
+ "package.json",
+ "README.md",
+ "LICENSE",
+ "CONTRIBUTING.rst"
+ ],
+ "devDependencies": {
+ "@babel/cli": "^7.11.6",
+ "@babel/core": "^7.11.6",
+ "@babel/plugin-proposal-class-properties": "^7.10.4",
+ "@babel/preset-env": "^7.11.5",
+ "@babel/preset-typescript": "^7.10.4",
+ "@testing-library/dom": "^8.0.0",
+ "@types/jest": "^27.4.0",
+ "babel-eslint": "^10.1.0",
+ "browserify": "^17.0.0",
+ "eslint": "^7.8.1",
+ "eslint-config-matrix-org": "^0.1.2",
+ "eslint-plugin-babel": "^5.3.1",
+ "jest": "^27.4.0",
+ "jest-environment-jsdom": "^27.0.6",
+ "rimraf": "^3.0.2",
+ "tinyify": "^3.0.0"
+ },
+ "dependencies": {
+ "@types/events": "^3.0.0",
+ "events": "^3.2.0"
+ },
+ "jest": {
+ "testEnvironment": "jsdom",
+ "testMatch": [
+ "<rootDir>/test/**/*-test.[jt]s?(x)"
+ ]
+ }
+}