-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "musicbot",
"version": "0.2.5",
"version_tag": "pre-alpha",
"description": "A Discord music bot that features Last.fm and Discogs integration.",
"main": "index.js",
"scripts": {
"build": "tsc --diagnostics",
"prestart": "tsc --diagnostics && node scripts/version.js",
"start": "node build/index.js",
"start:dev": "node scripts/version.js && npm run start",
"postversion": "node scripts/version.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/050soft/MusicBot.git"
},
"keywords": [
"lastfm",
"discogs",
"music"
],
"author": "Not_H3",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/050soft/MusicBot/issues"
},
"homepage": "https://github.com/050soft/MusicBot#readme",
"dependencies": {
"discord.js": "^14.25.1",
"dotenv": "^17.0.0",
"md5": "^2.3.0",
"mongodb": "^6.13.1",
"mongoose": "^9.1.3",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/md5": "^2.3.6",
"@types/node-fetch": "^2.6.12",
"typescript": "^5.9.3"
}
}