-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.51 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
{
"name": "@twake/server",
"version": "0.0.1",
"description": "This is the Twake on Matrix server",
"keywords": [
"matrix",
"twake",
"server"
],
"homepage": "https://ci.linagora.com/publicgroup/oss/twake/tom-server",
"bugs": {
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server/-/issues"
},
"repository": {
"type": "git",
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server.git"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Jordy Cabannes",
"email": "jcabannes@linagora.com"
},
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"dist",
"templates",
"*.md"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"start": "node example/tom-server.js",
"test": "cross-env LOG_TRANSPORTS=File LOG_FILE=/dev/null jest",
"check": "biome check ."
},
"dependencies": {
"@twake/matrix-identity-server": "*",
"@twake/utils": "*",
"ldapts": "^7.1.0",
"lodash": "^4.17.21",
"pg": "^8.10.0",
"qrcode": "^1.5.4",
"redis": "^4.6.6",
"sqlite3": "^5.1.6",
"uuid": "^11.0.3",
"validator": "^13.11.0"
},
"optionalDependencies": {
"@crowdsec/express-bouncer": "^0.1.0"
},
"devDependencies": {
"@types/qrcode": "^1.5.5"
},
"engines": {
"node": "24.14.0",
"npm": "11.9.0"
},
"volta": {
"node": "24.14.0",
"npm": "11.9.0"
}
}