-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.34 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
53
54
{
"name": "linebridge",
"version": "0.22.0",
"description": "Multiproposal framework to build fast, scalable, and secure servers.",
"author": "RageStudio <support@ragestudio.net>",
"bugs": {
"url": "https://github.com/ragestudio/linebridge/issues"
},
"license": "MIT",
"main": "./dist/index.js",
"bin": {
"linebridge-boot": "./bin/boot.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"src/**/**",
"dist/**/**",
"./package.json"
],
"scripts": {
"start": "hermes-node ./src/bin/server.js",
"build": "hermes build --parallel --clean",
"test": "mocha"
},
"dependencies": {
"@foxify/events": "^2.1.0",
"@gullerya/object-observer": "^6.1.3",
"@infisical/sdk": "^2.1.8",
"@socket.io/cluster-adapter": "^0.2.2",
"@socket.io/redis-adapter": "^8.2.1",
"@socket.io/redis-emitter": "^5.1.0",
"@socket.io/sticky": "^1.0.4",
"axios": "^1.6.7",
"axios-retry": "3.4.0",
"cors": "2.8.5",
"dotenv": "^16.4.4",
"hyper-express": "^6.17.2",
"ioredis": "^5.3.2",
"md5": "^2.3.0",
"module-alias": "2.2.2",
"morgan": "1.10.0",
"signal-exit": "^4.1.0",
"socket.io": "^4.7.4",
"socket.io-client": "4.5.4",
"sucrase": "^3.35.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@ragestudio/hermes": "^1.0.0",
"mocha": "^9.1.3"
}
}