This repository was archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.64 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.64 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "discord-voip",
"version": "0.1.3",
"description": "Implementation of the Discord Voice API for discord-player",
"scripts": {
"build": "tsup && node scripts/postbuild.mjs",
"build:docs": "tsc -p tsconfig.docs.json",
"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": "yarn build:docs && api-extractor run --local && api-extractor run --local --config ./api-extractor-docs.json",
"prepack": "yarn lint && yarn test && yarn build",
"changelog": "git cliff -- ./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": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist"
],
"contributors": [
"Crawl <icrawltogo@gmail.com>",
"Amish Shah <amishshah.2k@gmail.com>",
"SpaceEEC <spaceeec@yahoo.com>",
"Vlad Frangu <kingdgrizzle@gmail.com>",
"Aura Román <kyradiscord@gmail.com>"
],
"license": "Apache-2.0",
"keywords": [
"discord",
"discord.js",
"audio",
"voice",
"streaming"
],
"repository": {
"type": "git",
"url": "https://github.com/androzdev/discord-voip.git",
"directory": "packages/voice"
},
"bugs": {
"url": "https://github.com/androzdev/discord-voip/issues"
},
"homepage": "https://github.com/androzdev/discord-voip",
"dependencies": {
"@discord-player/ffmpeg": "^0.1.0",
"@discord-player/opus": "^0.1.2",
"@types/ws": "^8.5.5",
"discord-api-types": "^0.37.50",
"prism-media": "^1.3.5",
"tslib": "^2.6.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@favware/cliff-jumper": "^2.1.1",
"@microsoft/api-extractor": "^7.36.3",
"@types/jest": "^29.5.3",
"@types/node": "16.18.39",
"cross-env": "^7.0.3",
"esbuild-plugin-version-injector": "^1.2.0",
"eslint": "^8.46.0",
"eslint-config-neon": "^0.1.47",
"eslint-formatter-pretty": "^5.0.0",
"jest": "^29.6.2",
"jest-websocket-mock": "^2.4.0",
"mediaplex": "^0.0.2",
"mock-socket": "^9.2.1",
"prettier": "^2.8.8",
"tsup": "^7.1.0",
"turbo": "^1.10.12",
"tweetnacl": "^1.0.3",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.9.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@3.6.1"
}