-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"author": "Delemangi",
"bugs": {
"url": "https://github.com/Delemangi/asf-discord-bot/issues"
},
"dependencies": {
"discord.js": "^14.17.3",
"discord-api-types": "^0.37.115",
"rimraf": "^6.0.1",
"winston": "^3.17.0",
"ws": "^8.18.0"
},
"description": "ArchiSteamFarm Discord bot",
"devDependencies": {
"@swc/core": "^1.10.7",
"@swc/helpers": "^0.5.15",
"@types/ws": "^8.5.13",
"eslint": "^9.18.0",
"eslint-config-canonical": "^44.3.39",
"husky": "^9.1.7",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/Delemangi/asf-discord-bot",
"license": "MIT",
"main": "dist/main.js",
"name": "asf-discord-bot",
"repository": {
"type": "git",
"url": "https://github.com/Delemangi/asf-discord-bot.git"
},
"scripts": {
"build": "rimraf dist && tsc",
"format": "eslint . --cache --fix",
"lint": "tsc --noEmit && eslint . --cache",
"prepare": "husky",
"start": "node dist/main.js"
},
"type": "module",
"version": "3.0.0"
}