forked from turt2live/matrix-bot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.27 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@vector-im/matrix-bot-sdk",
"version": "0.7.1-element.16",
"description": "TypeScript/JavaScript SDK for Matrix bots and appservices",
"repository": {
"type": "git",
"url": "git+https://github.com/vector-im/matrix-bot-sdk.git"
},
"author": "Element",
"license": "MIT",
"bugs": {
"url": "https://github.com/vector-im/matrix-bot-sdk/issues"
},
"homepage": "https://github.com/vector-im/matrix-bot-sdk#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "yarn build",
"docs": "jsdoc -c jsdoc.json -P package.json -u docs/tutorials",
"build": "tsc --listEmittedFiles -p tsconfig-release.json",
"lint": "eslint \"{src,test,examples}/**/*.ts\"",
"lint:fix": "eslint \"{src,test,examples}/**/*.ts\" --fix",
"test": "jest",
"build:examples": "tsc -p tsconfig-examples.json",
"example:bot": "yarn build:examples && node lib/examples/bot.js",
"example:appservice": "yarn build:examples && node lib/examples/appservice.js",
"example:login_register": "yarn build:examples && node lib/examples/login_register.js",
"example:encryption_bot": "yarn build:examples && node lib/examples/encryption_bot.js",
"example:encryption_appservice": "yarn build:examples && node lib/examples/encryption_appservice.js"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"matrix",
"bot",
"sdk",
"js",
"ts",
"node",
"helpers",
"snippets",
"chat",
"modules",
"bot-sdk",
"appservices"
],
"files": [
"src/*",
"lib/*",
"scripts/*",
"tsconfig.json"
],
"dependencies": {
"@matrix-org/matrix-sdk-crypto-nodejs": "0.4.0",
"@types/express": "^5.0.6",
"another-json": "^0.2.0",
"async-lock": "^1.4.1",
"chalk": "4",
"express": "^5.2.1",
"glob-to-regexp": "^0.4.1",
"hash.js": "^1.1.7",
"html-to-text": "^9.0.5",
"htmlencode": "^0.0.4",
"lowdb": "1",
"lru-cache": "^11.2.4",
"mkdirp": "^3.0.1",
"morgan": "^1.10.1",
"postgres": "^3.4.8",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sanitize-html": "^2.17.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"@testcontainers/postgresql": "^11.11.0",
"@types/async-lock": "^1.4.2",
"@types/jest": "^30.0.0",
"@types/lowdb": "^2.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "25.0.9",
"@types/sanitize-html": "^2.16.0",
"@types/simple-mock": "^0.8.6",
"better-docs": "^2.7.3",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-matrix-org": "0.5",
"get-port": "7.1.0",
"jest": "^30.2.0",
"jsdoc": "^4.0.5",
"matrix-mock-request": "^2.6.0",
"simple-mock": "^0.8.0",
"taffydb": "^2.7.3",
"testcontainers": "^11.11.0",
"tmp": "^0.2.5",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*Test.ts"
]
},
"packageManager": "yarn@1.22.19"
}