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
|
{
"name": "@fosscord/gateway",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"postinstall": "npx ts-patch install -s",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/start.js",
"build": "npx tsc -p .",
"dev": "npx tsnd --respawn src/start.ts"
},
"keywords": [],
"author": "Fosscord",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/amqplib": "^0.8.1",
"@types/node": "^18.0.6",
"@types/ws": "^8.5.3",
"ts-node-dev": "^2.0.0",
"ts-patch": "^2.0.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@fosscord/util": "file:../util",
"amqplib": "^0.10.1",
"dotenv": "^16.0.1",
"typeorm": "^0.3.7",
"ws": "^8.8.1"
},
"optionalDependencies": {
"@yukikaze-bot/erlpack": "^1.0.1"
}
}
|