@discordjs/voice 0.7.5 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/README.md +7 -7
- package/dist/index.d.ts +5 -5
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -7
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -7
- package/docs/README.md +1 -0
- package/docs/index.yml +5 -0
- package/package.json +34 -39
package/docs/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
## [View the documentation here.](https://discord.js.org/#/docs/voice)
|
package/docs/index.yml
ADDED
package/package.json
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@discordjs/voice",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Implementation of the Discord Voice API for
|
|
3
|
+
"version": "0.8.0",
|
|
4
|
+
"description": "Implementation of the Discord Voice API for node.js",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
"test": "jest --pass-with-no-tests",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"build": "tsup",
|
|
11
|
-
"postbuild": "node scripts/postbuild.mjs",
|
|
12
|
-
"lint": "eslint src --ext mjs,js,ts",
|
|
13
|
-
"lint:fix": "eslint src --ext mjs,js,ts --fix",
|
|
14
|
-
"format": "prettier --write **/*.{ts,js,json,yml,yaml}",
|
|
15
|
-
"prepare": "is-ci || husky install",
|
|
6
|
+
"build": "tsup && node scripts/postbuild.mjs",
|
|
7
|
+
"test": "jest --pass-with-no-tests --collect-coverage",
|
|
8
|
+
"lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
|
|
9
|
+
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
|
|
16
10
|
"docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
11
|
+
"prepublishOnly": "yarn build && yarn lint && yarn test",
|
|
12
|
+
"changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/voice/*'"
|
|
19
13
|
},
|
|
20
14
|
"main": "./dist/index.js",
|
|
21
15
|
"module": "./dist/index.mjs",
|
|
@@ -31,7 +25,13 @@
|
|
|
31
25
|
"files": [
|
|
32
26
|
"dist"
|
|
33
27
|
],
|
|
34
|
-
"
|
|
28
|
+
"contributors": [
|
|
29
|
+
"Crawl <icrawltogo@gmail.com>",
|
|
30
|
+
"Amish Shah <amishshah.2k@gmail.com>",
|
|
31
|
+
"SpaceEEC <spaceeec@yahoo.com>",
|
|
32
|
+
"Vlad Frangu <kingdgrizzle@gmail.com>",
|
|
33
|
+
"Antonio Roman <kyradiscord@gmail.com>"
|
|
34
|
+
],
|
|
35
35
|
"license": "Apache-2.0",
|
|
36
36
|
"keywords": [
|
|
37
37
|
"discord",
|
|
@@ -42,50 +42,45 @@
|
|
|
42
42
|
],
|
|
43
43
|
"repository": {
|
|
44
44
|
"type": "git",
|
|
45
|
-
"url": "git+https://github.com/discordjs/
|
|
45
|
+
"url": "git+https://github.com/discordjs/discord.js.git"
|
|
46
46
|
},
|
|
47
47
|
"bugs": {
|
|
48
|
-
"url": "https://github.com/discordjs/
|
|
48
|
+
"url": "https://github.com/discordjs/discord.js/issues"
|
|
49
49
|
},
|
|
50
|
-
"homepage": "https://
|
|
50
|
+
"homepage": "https://discord.js.org",
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@types/ws": "^8.2.0",
|
|
53
|
-
"discord-api-types": "^0.
|
|
53
|
+
"discord-api-types": "^0.26.1",
|
|
54
54
|
"prism-media": "^1.3.2",
|
|
55
55
|
"tiny-typed-emitter": "^2.1.0",
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
|
-
"ws": "^8.2
|
|
57
|
+
"ws": "^8.4.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@babel/core": "^7.16.
|
|
61
|
-
"@babel/preset-env": "^7.16.
|
|
60
|
+
"@babel/core": "^7.16.12",
|
|
61
|
+
"@babel/preset-env": "^7.16.11",
|
|
62
62
|
"@babel/preset-typescript": "^7.16.0",
|
|
63
|
-
"@commitlint/cli": "^14.1.0",
|
|
64
|
-
"@commitlint/config-angular": "^14.1.0",
|
|
65
63
|
"@discordjs/ts-docgen": "^0.3.2",
|
|
66
64
|
"@types/jest": "^27.0.2",
|
|
67
65
|
"@types/node": "^16.11.7",
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
69
|
-
"@typescript-eslint/parser": "^5.
|
|
70
|
-
"eslint": "^8.
|
|
71
|
-
"eslint-config-marine": "^9.
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
|
67
|
+
"@typescript-eslint/parser": "^5.10.0",
|
|
68
|
+
"eslint": "^8.7.0",
|
|
69
|
+
"eslint-config-marine": "^9.3.2",
|
|
72
70
|
"eslint-config-prettier": "^8.3.0",
|
|
73
71
|
"eslint-plugin-prettier": "^4.0.0",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"jest-websocket-mock": "^2.2.1",
|
|
78
|
-
"lint-staged": "^11.2.6",
|
|
79
|
-
"mock-socket": "^9.0.7",
|
|
72
|
+
"jest": "^27.4.7",
|
|
73
|
+
"jest-websocket-mock": "^2.3.0",
|
|
74
|
+
"mock-socket": "^9.1.0",
|
|
80
75
|
"prettier": "^2.4.1",
|
|
81
76
|
"standard-version": "^9.3.2",
|
|
82
|
-
"tsup": "^5.
|
|
83
|
-
"
|
|
84
|
-
"
|
|
77
|
+
"tsup": "^5.11.11",
|
|
78
|
+
"tweetnacl": "^1.0.3",
|
|
79
|
+
"typedoc": "^0.22.11",
|
|
80
|
+
"typescript": "^4.5.5"
|
|
85
81
|
},
|
|
86
82
|
"engines": {
|
|
87
|
-
"node": ">=16.
|
|
88
|
-
"npm": ">=7.0.0"
|
|
83
|
+
"node": ">=16.9.0"
|
|
89
84
|
},
|
|
90
85
|
"publishConfig": {
|
|
91
86
|
"access": "public"
|