-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@twake/matrix-application-server",
"version": "0.0.1",
"description": "Matrix Application Server",
"keywords": [
"matrix",
"twake"
],
"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": "[email protected]"
}
],
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"dist",
"example/application-server.js",
"*.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:example",
"build:example": "rollup -p @rollup/plugin-typescript -e express,@twake/matrix-application-server -o example/application-server.js example/application-server.ts",
"build:lib": "rollup -c",
"start": "node example/application-server.js",
"test": "jest"
},
"dependencies": {
"@twake/config-parser": "*",
"@twake/crypto": "*",
"@twake/logger": "*",
"events": "^3.3.0",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"js-yaml": "^4.1.0"
}
}