-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
42
43
44
{
"name": "music-disc",
"version": "3.1.0",
"description": "Discord Music Bot",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"start": "npm run build && node ./dist/src/index.js",
"build": "tsc",
"dev": "tsc --noEmit --incremental false && tsx ./src/index.ts",
"lint": "eslint . --ext .ts --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmes98318/Music-Disc.git"
},
"author": "hmes98318",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmes98318/Music-Disc/issues"
},
"homepage": "https://github.com/hmes98318/Music-Disc#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cookie": "^0.7.0",
"discord.js": "~14.16.2",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"lavashark": "^2.1.2",
"undici": "^6.21.0"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"eslint": "^8.57.0",
"tsx": "^4.19.2",
"typescript": "~5.4.5"
},
"engines": {
"node": ">=18.12.0"
}
}