{ "name": "@discordjs/voice", "version": "0.13.0", "description": "Implementation of the Discord Voice API for node.js", "scripts": { "build": "tsup && node scripts/postbuild.mjs", "test": "jest --coverage", "lint": "prettier --check . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --format=pretty", "format": "prettier --write . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --fix --format=pretty", "fmt": "yarn format", "docs": "api-extractor run --local", "prepack": "yarn lint && yarn test && yarn build", "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 ", "Aura Román " ], "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.37.14", "prism-media": "^1.3.4", "tslib": "^2.4.0", "ws": "^8.9.0" }, "devDependencies": { "@babel/core": "^7.19.3", "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@favware/cliff-jumper": "^1.8.8", "@microsoft/api-extractor": "^7.33.4", "@types/jest": "^29.2.0", "@types/node": "16.11.68", "cross-env": "^7.0.3", "esbuild-plugin-version-injector": "^1.0.0", "eslint": "^8.25.0", "eslint-config-neon": "^0.1.38", "eslint-formatter-pretty": "^4.1.0", "jest": "^29.2.1", "jest-websocket-mock": "^2.4.0", "mock-socket": "^9.1.5", "prettier": "^2.7.1", "tsup": "^6.3.0", "tweetnacl": "^1.0.3", "typescript": "^4.8.4" }, "engines": { "node": ">=16.9.0" }, "publishConfig": { "access": "public" } }