-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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": "fish-sdk",
"meta": {
"name": "Gamefish",
"description": "The official reference for building Fish Discord bots."
},
"version": "3.0.2",
"description": "The official source-available SDK for the Fish bots. Written in Node-compatible JavaScript.",
"main": "src/index.js",
"repository": "https://github.com/hydrabank/fish-sdk.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-together": "^1.3.31",
"discord.js": "^14.1.2",
"i18next": "^21.8.16",
"keyv": "^4.3.3",
"mocha": "^10.0.0",
"poru": "3.2.0",
"spotilink": "^1.4.7"
},
"scripts": {
"start": "babel-node src/index.js",
"build": "babel src/index.js -d dist",
"prod": "node dist/index.js",
"test": "mocha"
}
}