-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
45
46
47
48
49
{
"name": "@midspike/discord-speech-recognition",
"version": "3.4.0",
"description": "Speech recognition for discord.js bots.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npx tsc --build",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MidSpike/discord-speech-recognition.git"
},
"keywords": [],
"author": "MidSpike",
"license": "MIT",
"bugs": {
"url": "https://github.com/MidSpike/discord-speech-recognition/issues"
},
"homepage": "",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@tsconfig/node16": "16.1.0",
"@types/wav": "1.0.1",
"husky": "8.0.3",
"typescript": "5.1.6"
},
"peerDependencies": {
"@discordjs/voice": "0.16.0",
"discord.js": "14.12.1"
},
"dependencies": {
"@discordjs/voice": "0.16.0",
"axios": "1.4.0",
"discord.js": "14.12.1",
"ffmpeg-static": "5.1.0",
"node-gyp": "9.4.0",
"prism-media": "1.3.5",
"wav": "1.0.2"
},
"files": [
"dist/"
]
}