-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1002 Bytes
/
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
{
"name": "pat-player",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"start": "node index.js",
"build": "tsc",
"ts:w": "tsc -w",
"node-inspect": "node --inspect ./dist/index.js",
"nodemon": "nodemon --inspect ./dist/index.js"
},
"author": "Terncode",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.5.0",
"@types/lodash": "^4.14.168",
"@typescript-eslint/parser": "^4.22.0",
"axios": "^0.21.1",
"discord.js": "^12.5.3",
"ffmpeg-static": "^4.3.0",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-opus": "^0.3.3",
"opusscript": "0.0.8",
"os-utils": "0.0.14",
"prettysize": "^2.0.0",
"simple-youtube-api": "^5.2.1",
"ytdl-core": "^4.5.0",
"ytdl-core-discord": "^1.3.0"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/os-utils": "0.0.1",
"typescript": "^4.2.4"
},
"nodemonConfig": {
"watch": [
"dist/*"
]
}
}