-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 890 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
{
"name": "matrix-rpc-js",
"version": "0.1.0",
"description": "RPC interface to the Matrix federated network",
"main": "app/index.js",
"repository": "https://github.com/zhaytee/matrix-rpc-js",
"author": "Joe Toscano <[email protected]>",
"license": "ISC",
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"@types/auto-bind": "^1.2.0",
"@types/node": "^10.12.18",
"@types/uuid": "^3.4.4",
"auto-bind": "^2.0.0",
"grpc": "^1.17.0",
"lru-cache": "^5.1.1",
"matrix-js-sdk": "^0.14.2",
"node-localstorage": "^1.3.1",
"olm": "https://matrix.org/packages/npm/olm/olm-3.1.4.tgz",
"protobufjs": "^6.8.8",
"source-map-support": "^0.5.10",
"ts-protoc-gen": "^0.12.0",
"typescript": "^3.2.2",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"scripts": {
"build": "tsc --project .",
"start": "node app/index.js"
}
}