-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 KB
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
{
"name": "osbot",
"version": "1.0.0",
"description": "A modern Discord bot built with TypeScript and discord.js v14",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && npm run copy-files",
"copy-files": "node -e \"require('fs').cpSync('src/database/schema.sql', 'dist/database/schema.sql'); require('fs').cpSync('src/locales', 'dist/locales', {recursive: true})\"",
"start": "node dist/index.js",
"deploy": "tsx src/deploy-commands.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"discord",
"bot",
"typescript",
"discord.js"
],
"author": "",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.0",
"@snazzah/davey": "^0.1.9",
"better-sqlite3": "^12.5.0",
"discord.js": "^14.25.1",
"dotenv": "^16.6.1",
"express": "^5.1.0",
"express-session": "^1.18.2",
"ffmpeg-static": "^5.3.0",
"libsodium-wrappers": "^0.7.15",
"opusscript": "^0.1.1",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"play-dl": "^1.9.7",
"sodium-native": "^5.0.10",
"ws": "^8.18.3",
"youtube-dl-exec": "^3.0.28"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.5",
"@types/express-session": "^1.18.2",
"@types/node": "^22.13.7",
"@types/passport": "^1.0.17",
"@types/passport-discord": "^0.1.15",
"@types/ws": "^8.18.1",
"tsx": "^4.19.3",
"typescript": "^5.9.3"
}
}