-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 997 Bytes
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
{
"name": "dreamerbot",
"version": "0.0.1",
"description": "A solid foundation for building powerful Discord bots — clean, minimal, and extensible.",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node --enable-source-maps ./dist/index.js",
"postbuild": "cpy \"src/**/*.json\" dist --parents",
"typesafe-i18n": "typesafe-i18n"
},
"engines": {
"node": ">=22.15.0 <23.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Maslinin/DreamerBot"
},
"author": "Danil Rudin",
"license": "MIT",
"dependencies": {
"@discord-player/extractor": "^7.1.0",
"discord-player": "^7.1.0",
"discord.js": "~14.21.0",
"log4js": "^6.9.1",
"mediaplex": "^1.0.0",
"typesafe-i18n": "~5.26.2"
},
"devDependencies": {
"@types/node": "^24.3.0",
"cpy-cli": "^6.0.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
}
}