-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 964 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
{
"name": "@kirdock/discordjs-voice-recorder",
"version": "1.1.1",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Klaus Striessnig",
"repository": {
"type": "git",
"url": "https://github.com/Kirdock/discordjs-voice-recorder.git"
},
"files": [
"/lib"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint:check": "eslint ./",
"lint:fix": "eslint --fix ./"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": ">=0.16.0",
"archiver": "^5.3.1",
"fluent-ffmpeg": "^2.1.2"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"typescript": "^4.5.4"
}
}