-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 874 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
{
"name": "pipe-bomb-discord-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "npm run build && node dist/index.js",
"quickstart": "npx ts-node --esm src/index.ts",
"build": "npm run clean && npx tsc",
"dev": "nodemon",
"clean": "npx rimraf dist/",
"rimraf": "./node_modules/rimraf/bin.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"axios": "^1.4.0",
"discord.js": "^14.11.0",
"ffmpeg-static": "^5.1.0",
"fs": "^0.0.1-security",
"libsodium-wrappers": "^0.7.11",
"pipebomb.js": "^0.10.2",
"stream": "^0.0.2"
}
}