{ "name": "@discordjs/voice", "version": "0.11.0-dev", "description": "Implementation of the Discord Voice API for node.js", "scripts": { "build": "tsup && node scripts/postbuild.mjs", "test": "jest --coverage", "lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts", "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix", "docs": "docgen -i src/index.ts -c docs/index.json -o docs/docs.json --typescript && api-extractor run --local", "prepack": "yarn build && yarn lint && yarn test", "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/voice/*'", "release": "cliff-jumper" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "typings": "./dist/index.d.ts", "exports": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "directories": { "lib": "src", "test": "__tests__" }, "files": [ "dist" ], "contributors": [ "Crawl ", "Amish Shah ", "SpaceEEC ", "Vlad Frangu ", "Antonio Roman " ], "license": "Apache-2.0", "keywords": [ "discord", "discord.js", "audio", "voice", "streaming" ], "repository": { "type": "git", "url": "git+https://github.com/discordjs/discord.js.git" }, "bugs": { "url": "https://github.com/discordjs/discord.js/issues" }, "homepage": "https://discord.js.org", "dependencies": { "@types/ws": "^8.5.3", "discord-api-types": "^0.36.1", "prism-media": "^1.3.2", "tslib": "^2.4.0", "ws": "^8.8.0" }, "devDependencies": { "@babel/core": "^7.18.6", "@babel/preset-env": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@discordjs/docgen": "workspace:^", "@discordjs/scripts": "workspace:^", "@favware/cliff-jumper": "^1.8.5", "@microsoft/api-extractor": "^7.28.3", "@types/jest": "^28.1.4", "eslint": "^8.19.0", "jest": "^28.1.2", "jest-websocket-mock": "^2.3.0", "mock-socket": "^9.1.5", "prettier": "^2.7.1", "tsup": "^6.1.3", "tweetnacl": "^1.0.3", "typescript": "^4.7.4" }, "engines": { "node": ">=16.9.0" }, "publishConfig": { "access": "public" } }