-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "joeymusicbotreborn",
"version": "2.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"node": "node --experimental-specifier-resolution=node --no-warnings -r dotenv/config",
"start": "npm run node -- -r source-map-support/register dist/main.js",
"js": "npm run build && npm start",
"ts": "npm run node -- --loader ts-node/esm src/main.ts",
"build": "npm run clean && npx tsc",
"clean": "node -e \"fs.rm('dist',{recursive:true},()=>{});\"",
"deploy": "npm run node -- --loader ts-node/esm src/deployCmds.ts"
},
"author": "joey",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@types/perfy": "^1.1.0",
"inquirer": "^9.1.4",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.15.0",
"@distube/soundcloud": "^1.3.0",
"@distube/spotify": "^1.5.1",
"@distube/ytdl-core": "^4.11.17",
"@distube/ytsr": "github:distubejs/ytsr",
"@prisma/client": "^4.11.0",
"discord.js": "^14.8.0",
"distube": "^4.0.3",
"dotenv": "^16.0.3",
"libsodium-wrappers": "^0.7.11"
}
}