-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "seeker-bot",
"version": "1.0.0",
"description": " ",
"main": "./src/index.ts",
"private": true,
"scripts": {
"start": "node prod/index.js",
"clean": "rimraf prod",
"build": "pnpm install && tsc && tsc-alias",
"build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"build:try": "rimraf prod && tsc && tsc-alias && node prod/index.js",
"dev": "tsx .",
"dev:watch": "tsx watch .",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"license": "MIT",
"dependencies": {
"@discordjs/voice": "^0.17.0",
"all-the-cities": "^3.1.0",
"animequotes": "^2.0.0",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"chance": "^1.1.11",
"cheerio": "^1.0.0-rc.12",
"countries-and-timezones": "^3.4.1",
"cron": "^3.1.7",
"discord.js": "^14.14.1",
"dotenv": "^16.1.4",
"drizzle-orm": "^0.34.1",
"fastify": "^5.0.0",
"ffmpeg-static": "^5.1.0",
"figlet": "^1.6.0",
"fraktur": "^1.1.0",
"genius-lyrics": "^4.4.3",
"grapheme-splitter": "^1.0.4",
"html-to-text": "^9.0.5",
"isnumber": "^1.0.0",
"libsodium-wrappers": "^0.7.11",
"mal-scraper": "^2.12.1",
"mangadex-full-api": "^5.12.1",
"moment-timezone": "^0.5.43",
"node-fetch": "^3.3.1",
"node-url-shortener": "^2.0.3",
"normalize-strings": "^1.1.1",
"opusscript": "^0.1.0",
"owoify-js": "^2.0.0",
"pg": "^8.13.0",
"play-dl": "^1.9.6",
"pluralize": "^8.0.0",
"rss-parser": "^3.13.0",
"string-progressbar": "^1.0.4",
"stutterify": "^2.2.0",
"tiny-text": "^1.0.1",
"to-zalgo": "^1.0.1",
"tslog": "^4.8.2",
"vaporwave": "^1.0.4",
"weather-js": "^2.0.0",
"youtubei": "^1.1.2",
"ytdl-core": "^4.11.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/figlet": "^1.5.6",
"@types/html-to-text": "^9.0.1",
"@types/node": "^18.7.14",
"@types/pg": "^8.11.10",
"@types/pluralize": "^0.0.33",
"concurrently": "^9.0.1",
"drizzle-kit": "^0.25.0",
"node": "20.18.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.1",
"typescript": "^5.1.3"
}
}