-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.11 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
{
"name": "matrix-bifrost",
"version": "2.1.1",
"description": "Multi protocol bridging for Matrix.",
"engines": {
"node": "^22.0.0 || >=24.0.0"
},
"main": "lib/Program.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"lint": "oxlint src spec test",
"lint:fix": "oxlint --fix src spec test",
"fmt": "oxfmt src spec test",
"fmt:check": "oxfmt --check src spec test",
"start": "node --enable-source-maps lib/Program.js -c config.yaml",
"genreg": "node lib/Program.js -r -c config.yaml",
"test": "vitest run",
"test:e2e": "vitest --config vitest.e2e.config.ts run",
"changelog": "scripts/towncrier.sh",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrix-org/matrix-bifrost.git"
},
"keywords": [],
"author": "Will Hunt <will@half-shot.uk>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-bifrost/issues"
},
"homepage": "https://github.com/matrix-org/matrix-bifrost",
"dependencies": {
"@xmpp/component": "^0.12.0",
"@xmpp/component-core": "^0.12.0",
"@xmpp/jid": "^0.12.0",
"@xmpp/reconnect": "^0.12.0",
"@xmpp/xml": "^0.12.0",
"fast-xml-parser": "^4.2.5",
"html-entities": "^2.4.0",
"htmlparser2": "^9.1.0",
"leven": "^3.0.0",
"marked": "^11.1.1",
"matrix-appservice-bridge": "^11.1.0",
"nedb": "^1.8.0",
"pg": "8.11.3",
"prom-client": "^15.1.0",
"quick-lru": "^5.0.0"
},
"devDependencies": {
"@testcontainers/postgresql": "^12.0.4",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22",
"@types/pg": "^7.14.5",
"@types/xmpp__jid": "^1.3.5",
"@types/xmpp__xml": "^0.6.1",
"@vitest/coverage-v8": "^4.1.10",
"@xmpp/client": "^0.13.1",
"matrix-bot-sdk": "^0.8.0",
"testcontainers": "^12.0.4",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"yaml": "^2.9.0"
},
"optionalDependencies": {
"node-purple": "git+https://github.com/matrix-org/node-purple#f5f5005501a95ac1e61da69298782b08a130946a"
}
}