-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "discord-speech-recognition",
"version": "3.4.1",
"description": "Extension for making discord speech recognition bots.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "nodemon dist/index.js",
"watch": "tsc -w",
"doc": "typedoc",
"build": "tsc --project tsconfig.build.json",
"test": "ts-mocha --exit --require source-map-support/register tests/**/*.test.ts ",
"coverage": "nyc npm run test",
"lint": "eslint src/ && tsc --noEmit",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rei-x/discord-speech-recognition.git"
},
"keywords": [
"discord.js",
"discord",
"speechrecognition"
],
"author": "Rei-x",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rei-x/discord-speech-recognition/issues"
},
"homepage": "https://discordsr.netlify.app/",
"engines": {
"node": ">=16.6.0"
},
"peerDependencies": {
"@discordjs/opus": "^0.x",
"@discordjs/voice": "^0.x",
"discord.js": "14.x"
},
"dependencies": {
"axios": "^0.21.1",
"node-fetch": "^2.6.5",
"wav": "^1.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-spies": "^1.0.3",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^16.10.2",
"@types/node-fetch": "^2.5.12",
"@types/node-wit": "^6.0.1",
"@types/wav": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"ffmpeg-static": "^4.4.0",
"husky": "^7.0.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"source-map-support": "^0.5.20",
"ts-mocha": "^9.0.2",
"tweetnacl": "^1.0.3",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"files": [
"dist/"
]
}