-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "discord-recordsman",
"version": "0.0.1",
"description": "An example receiver bot written using @discordjs/voice",
"main": "dist/bot.js",
"scripts": {
"start": "npm run build && node dist/bot",
"lint": "prettier --cache --check . && eslint src --ext mjs,js,ts --cache",
"format": "prettier --cache --write . && eslint src --ext mjs,js,ts --fix --cache",
"build": "rimraf dist && tsc",
"build:check": "tsc --noEmit --incremental false"
},
"author": "Amish Shah <[email protected]>",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"discord.js": "^14.13.0",
"libsodium-wrappers": "^0.7.10",
"node-crc": "^1.3.2",
"prism-media": "^2.0.0-alpha.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^5.2.2"
}
}