diff options
author | RaindropsSys <contact@minteck.org> | 2023-04-24 14:03:36 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-04-24 14:03:36 +0200 |
commit | 633c92eae865e957121e08de634aeee11a8b3992 (patch) | |
tree | 09d881bee1dae0b6eee49db1dfaf0f500240606c /includes/external/matrix/node_modules/matrix-events-sdk/package.json | |
parent | c4657e4509733699c0f26a3c900bab47e915d5a0 (diff) | |
download | pluralconnect-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-events-sdk/package.json')
-rw-r--r-- | includes/external/matrix/node_modules/matrix-events-sdk/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/includes/external/matrix/node_modules/matrix-events-sdk/package.json b/includes/external/matrix/node_modules/matrix-events-sdk/package.json new file mode 100644 index 0000000..8816cf3 --- /dev/null +++ b/includes/external/matrix/node_modules/matrix-events-sdk/package.json @@ -0,0 +1,48 @@ +{ + "name": "matrix-events-sdk", + "version": "0.0.1", + "description": "JS/TS SDK for interacting with Matrix events", + "main": "lib/index.js", + "types": "lib/index.d.ts", + "repository": "git@github.com:matrix-org/matrix-events-sdk.git", + "author": "The Matrix.org Foundation C.I.C.", + "license": "Apache-2.0", + "files": [ + "lib", + "README.md", + "package.json", + "yarn.lock", + "LICENSE" + ], + "scripts": { + "prepublishOnly": "yarn build", + "clean": "rimraf lib", + "build": "yarn clean && yarn build:compile && yarn build:types", + "build:types": "tsc -p ./tsconfig.build.json --emitDeclarationOnly", + "build:compile": "babel -d lib --verbose --extensions \".ts\" src", + "start": "tsc -p ./tsconfig.build.json -w", + "test": "jest", + "lint": "eslint src test && tsc --noEmit", + "lint:fix": "eslint --fix src test" + }, + "devDependencies": { + "@babel/cli": "^7.16.7", + "@babel/core": "^7.16.7", + "@babel/eslint-parser": "^7.16.5", + "@babel/eslint-plugin": "^7.16.5", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/preset-env": "^7.16.7", + "@babel/preset-typescript": "^7.16.7", + "@types/jest": "^27.0.2", + "@typescript-eslint/eslint-plugin": "^4.32.0", + "@typescript-eslint/parser": "^4.32.0", + "eslint": "^7.32.0", + "eslint-config-google": "^0.14.0", + "eslint-plugin-import": "^2.25.4", + "eslint-plugin-matrix-org": "^0.4.0", + "jest": "^27.2.4", + "rimraf": "^3.0.2", + "ts-jest": "^27.0.5", + "typescript": "^4.5.4" + } +} |