-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.39 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
{
"type": "module",
"name": "audiobookbay-discord-bot",
"version": "2.0.6",
"description": "AudioBookBay Scraper TypeScript DiscordBot",
"main": "dist/src/bot.js",
"keywords": [
"audiobookbay",
"audiobook",
"torrent",
"javascript"
],
"scripts": {
"example": "tsx ./playground/usage-example.ts",
"dev": "cross-env NODE_ENV=development tsx watch src/bot.ts",
"deploy": "tsx src/deploy-commands.ts",
"build": "rm -rf dist && npx swc src -d dist",
"start": "node .",
"build:ci": "tsc && npm run build"
},
"author": "jamcalli",
"license": "GNU",
"repository": {
"type": "git",
"url": "https://github.com/jamcalli/ABB-Discord-Bot"
},
"dependencies": {
"@ctrl/qbittorrent": "^7.1.2",
"@swc/plugin-transform-imports": "^1.5.123",
"@types/cheerio": "^0.22.31",
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.6.2",
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.12.1",
"dotenv": "^16.4.2",
"node-fetch": "^3.2.10",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.13",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"tsx": "^4.7.1",
"typescript": "^4.5.4",
"vitest": "^0.22.1"
}
}