forked from davidar/hubot-matrix
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 893 Bytes
/
package.json
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
{
"name": "hubot-matrix",
"version": "3.0.0-beta.5",
"description": "Matrix adapter for Hubot",
"type": "module",
"main": "dist/matrix.esm.js",
"author": "David A Roberts",
"license": "MIT",
"dependencies": {
"commonmark": "^0.30.0",
"image-size": "^0.5.1",
"matrix-js-sdk": "^20.0.0",
"node-localstorage": "^2.2.1",
"parent-require": "^1.0.0",
"request": "^2.79.0"
},
"peerDependencies": {
"hubot": ">=4.0.0-alpha"
},
"devDependencies": {
"@types/commonmark": "^0.27.5",
"@types/hubot": "^3.3.1",
"@types/image-size": "^0.8.0",
"@types/node-localstorage": "^1.3.0",
"@types/request": "^2.48.8",
"dts-cli": "^1.6.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"typings": "dist/matrix.d.ts",
"scripts": {
"build": "dts build --name Matrix --entry src/matrix.ts --format esm --target node"
}
}