-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "@rocket.chat/federation-service",
"private": true,
"version": "0.1.1-rc.1",
"description": "Rocket.Chat Federation service",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"ms": "TRANSPORTER=${TRANSPORTER:-TCP} MONGO_URL=${MONGO_URL:-mongodb://localhost:3001/meteor} bun --watch run src/service.ts",
"start": "bun run src/service.ts",
"dev": "bun --watch run src/service.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"typecheck": "tsc --noEmit --skipLibCheck -p tsconfig.json"
},
"dependencies": {
"@hono/node-server": "^1.14.4",
"@rocket.chat/core-services": "workspace:^",
"@rocket.chat/core-typings": "workspace:*",
"@rocket.chat/emitter": "^0.31.25",
"@rocket.chat/federation-matrix": "workspace:^",
"@rocket.chat/federation-sdk": "0.1.13",
"@rocket.chat/http-router": "workspace:*",
"@rocket.chat/instance-status": "workspace:^",
"@rocket.chat/license": "workspace:^",
"@rocket.chat/models": "workspace:*",
"@rocket.chat/network-broker": "workspace:^",
"hono": "^3.11.0",
"pino": "^9.11.0",
"polka": "^0.5.2",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"tweetnacl": "^1.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^4.17.17",
"eslint": "~8.45.0",
"pino-pretty": "^7.6.1",
"typescript": "^5.3.0"
},
"keywords": [
"rocketchat"
],
"author": "Rocket.Chat"
}