-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) 路 1.75 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) 路 1.75 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
54
55
56
57
58
59
{
"name": "soundboard",
"version": "2.0.0",
"description": "Discord bot that stores and plays MP3 files from AWS S3 cloud storage in voice channels",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"test:db": "ts-node -r tsconfig-paths/register scripts/test-db.ts",
"test:s3": "ts-node -r tsconfig-paths/register scripts/test-s3.ts",
"start": "node -r tsconfig-paths/register dist/index.js",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"watch": "tsc -w",
"clean": "rimraf dist"
},
"keywords": [
"discord",
"bot",
"music",
"mp3",
"typescript",
"aws",
"s3",
"cloud-storage",
"soundboard"
],
"author": "RDP Datacenter",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.828.0",
"@aws-sdk/lib-storage": "^3.828.0",
"@discordjs/voice": "1.0.0-dev.1772884937-84b85f4c9",
"discord.js": "^14.25.1",
"dotenv": "^16.5.0",
"ffmpeg-static": "^5.2.0",
"libsodium-wrappers": "^0.7.15",
"opusscript": "^0.0.8",
"pg": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/pg": "^8.15.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rdp-datacenter/soundboard.git"
},
"bugs": {
"url": "https://github.com/rdp-datacenter/soundboard/issues"
},
"homepage": "https://github.com/rdp-datacenter/soundboard#readme"
}