-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 751 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 751 Bytes
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
{
"name": "PandaBot",
"version": "0.1.0",
"description": "A utility bot that provides some useful tools.",
"main": "dist/index.js",
"scripts": {
"convert-audio": "node scripts/wavify.js",
"start": "npm run tsc && node .",
"tsc": "tsc",
"watch": "tsc --watch"
},
"engines": {
"node": "14.x"
},
"keywords": [],
"author": "PandaDriver",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.3.3",
"better-sqlite3": "^7.1.2",
"dayjs": "^1.9.7",
"discord.js": "^12.5.1",
"ffmpeg-static": "^4.2.7",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.1",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.0",
"typescript": "^4.1.3"
}
}