UNPKG

discord-speech-recognition

Version:

Extension for making discord speech recognition bots.

83 lines (82 loc) 2.31 kB
{ "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/" ] }