-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
41
{
"name": "fish-sdk",
"meta": {
"name": "Songfish",
"description": "A Lavalink-based Discord music bot. Open-source and built with versatility in mind."
},
"version": "3.1.0",
"description": "The official source-available SDK for the Fish music bots.",
"main": "src/index.js",
"repository": "https://github.com/hydrabank/songfish.git",
"author": "Dani Hyders <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/node": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.18.9",
"@discordjs/rest": "^1.1.0",
"@keyv/mongo": "^2.1.6",
"bree": "^9.1.2",
"chalk": "^4.1.2",
"discord-api-types": "^0.37.8",
"discord.js": "^14.9.0",
"i18next": "^21.8.16",
"keyv": "^4.3.3",
"mocha": "^10.0.0",
"poru": "3.2.0",
"spotilink": "^1.4.7",
"undici": "^5.21.2"
},
"scripts": {
"start": "babel-node src/index.js",
"dev": "babel-node src/index.js",
"build": "babel src/index.js -d dist",
"prod": "node dist/index.js",
"test": "mocha"
}
}