@discordjs/voice 0.9.0-dev.1649505804-3c0bbac → 0.9.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/package.json CHANGED
@@ -1,89 +1,88 @@
1
1
  {
2
- "name": "@discordjs/voice",
3
- "version": "0.9.0-dev.1649505804-3c0bbac",
4
- "description": "Implementation of the Discord Voice API for node.js",
5
- "scripts": {
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",
10
- "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
11
- "prepublishOnly": "yarn build && yarn lint && yarn test",
12
- "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/voice/*'"
13
- },
14
- "main": "./dist/index.js",
15
- "module": "./dist/index.mjs",
16
- "typings": "./dist/index.d.ts",
17
- "exports": {
18
- "import": "./dist/index.mjs",
19
- "require": "./dist/index.js",
20
- "types": "./dist/index.d.ts"
21
- },
22
- "directories": {
23
- "lib": "src",
24
- "test": "__tests__"
25
- },
26
- "files": [
27
- "dist"
28
- ],
29
- "contributors": [
30
- "Crawl <icrawltogo@gmail.com>",
31
- "Amish Shah <amishshah.2k@gmail.com>",
32
- "SpaceEEC <spaceeec@yahoo.com>",
33
- "Vlad Frangu <kingdgrizzle@gmail.com>",
34
- "Antonio Roman <kyradiscord@gmail.com>"
35
- ],
36
- "license": "Apache-2.0",
37
- "keywords": [
38
- "discord",
39
- "discord.js",
40
- "audio",
41
- "voice",
42
- "streaming"
43
- ],
44
- "repository": {
45
- "type": "git",
46
- "url": "git+https://github.com/discordjs/discord.js.git"
47
- },
48
- "bugs": {
49
- "url": "https://github.com/discordjs/discord.js/issues"
50
- },
51
- "homepage": "https://discord.js.org",
52
- "dependencies": {
53
- "@types/ws": "^8.2.2",
54
- "discord-api-types": "^0.29.0",
55
- "prism-media": "^1.3.2",
56
- "tiny-typed-emitter": "^2.1.0",
57
- "tslib": "^2.3.1",
58
- "ws": "^8.5.0"
59
- },
60
- "devDependencies": {
61
- "@babel/core": "^7.17.2",
62
- "@babel/preset-env": "^7.16.11",
63
- "@babel/preset-typescript": "^7.16.7",
64
- "@discordjs/ts-docgen": "^0.3.4",
65
- "@types/jest": "^27.4.0",
66
- "@types/node": "^16.11.24",
67
- "@typescript-eslint/eslint-plugin": "^5.11.0",
68
- "@typescript-eslint/parser": "^5.11.0",
69
- "eslint": "^8.9.0",
70
- "eslint-config-marine": "^9.3.2",
71
- "eslint-config-prettier": "^8.3.0",
72
- "eslint-plugin-prettier": "^4.0.0",
73
- "jest": "^27.5.1",
74
- "jest-websocket-mock": "^2.3.0",
75
- "mock-socket": "^9.1.2",
76
- "prettier": "^2.5.1",
77
- "tsup": "^5.11.13",
78
- "tweetnacl": "^1.0.3",
79
- "typedoc": "^0.22.11",
80
- "typescript": "^4.5.5"
81
- },
82
- "engines": {
83
- "node": ">=16.9.0"
84
- },
85
- "publishConfig": {
86
- "access": "public"
87
- },
88
- "stableVersion": "0.9.0-dev"
89
- }
2
+ "name": "@discordjs/voice",
3
+ "version": "0.9.0",
4
+ "description": "Implementation of the Discord Voice API for node.js",
5
+ "scripts": {
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",
10
+ "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
11
+ "prepublishOnly": "yarn build && yarn lint && yarn test",
12
+ "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/voice/*'"
13
+ },
14
+ "main": "./dist/index.js",
15
+ "module": "./dist/index.mjs",
16
+ "typings": "./dist/index.d.ts",
17
+ "exports": {
18
+ "import": "./dist/index.mjs",
19
+ "require": "./dist/index.js",
20
+ "types": "./dist/index.d.ts"
21
+ },
22
+ "directories": {
23
+ "lib": "src",
24
+ "test": "__tests__"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "contributors": [
30
+ "Crawl <icrawltogo@gmail.com>",
31
+ "Amish Shah <amishshah.2k@gmail.com>",
32
+ "SpaceEEC <spaceeec@yahoo.com>",
33
+ "Vlad Frangu <kingdgrizzle@gmail.com>",
34
+ "Antonio Roman <kyradiscord@gmail.com>"
35
+ ],
36
+ "license": "Apache-2.0",
37
+ "keywords": [
38
+ "discord",
39
+ "discord.js",
40
+ "audio",
41
+ "voice",
42
+ "streaming"
43
+ ],
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/discordjs/discord.js.git"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/discordjs/discord.js/issues"
50
+ },
51
+ "homepage": "https://discord.js.org",
52
+ "dependencies": {
53
+ "@types/ws": "^8.5.3",
54
+ "discord-api-types": "^0.29.0",
55
+ "prism-media": "^1.3.2",
56
+ "tiny-typed-emitter": "^2.1.0",
57
+ "tslib": "^2.3.1",
58
+ "ws": "^8.5.0"
59
+ },
60
+ "devDependencies": {
61
+ "@babel/core": "^7.17.9",
62
+ "@babel/preset-env": "^7.16.11",
63
+ "@babel/preset-typescript": "^7.16.7",
64
+ "@discordjs/ts-docgen": "^0.4.1",
65
+ "@types/jest": "^27.4.1",
66
+ "@types/node": "^16.11.27",
67
+ "@typescript-eslint/eslint-plugin": "^5.19.0",
68
+ "@typescript-eslint/parser": "^5.19.0",
69
+ "eslint": "^8.13.0",
70
+ "eslint-config-marine": "^9.4.1",
71
+ "eslint-config-prettier": "^8.5.0",
72
+ "eslint-plugin-import": "^2.26.0",
73
+ "jest": "^27.5.1",
74
+ "jest-websocket-mock": "^2.3.0",
75
+ "mock-socket": "^9.1.2",
76
+ "prettier": "^2.6.2",
77
+ "tsup": "^5.12.5",
78
+ "tweetnacl": "^1.0.3",
79
+ "typedoc": "^0.22.15",
80
+ "typescript": "^4.6.3"
81
+ },
82
+ "engines": {
83
+ "node": ">=16.9.0"
84
+ },
85
+ "publishConfig": {
86
+ "access": "public"
87
+ }
88
+ }
package/CHANGELOG.md DELETED
@@ -1,51 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- # [0.8.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.7.5...@discordjs/voice@0.8.0) (2021-12-08)
6
-
7
- ## Refactor
8
-
9
- - PresenceUpdate and demuxProbe (#7248) ([1745973](https://github.com/discordjs/discord.js/commit/174597302408f13c5bb685e2fb02ae2137cb481d))
10
-
11
- ## Testing
12
-
13
- - **voice:** Fix tests ([62c74b8](https://github.com/discordjs/discord.js/commit/62c74b8333066465e5bd295b8b102b35a506751d))
14
- - Fix voice secretbox tests ([4a2dbd6](https://github.com/discordjs/discord.js/commit/4a2dbd62382f904d596b34da0116d50e724b81c4))
15
- - Fix voice tests ([b593bd3](https://github.com/discordjs/discord.js/commit/b593bd32a98282a92fa28f2fb0a8ef239866622c))
16
-
17
- # [0.7.5](https://github.com/discordjs/voice/compare/v0.7.4...v0.7.5) (2021-11-12)
18
-
19
- ## Bug Fixes
20
-
21
- - postbuild script ([644af95](https://github.com/discordjs/voice/commit/644af9579f02724c489514f482640b8413d2c305))
22
-
23
- # [0.7.4](https://github.com/discordjs/voice/compare/v0.7.3...v0.7.4) (2021-11-12)
24
-
25
- ## Bug Fixes
26
-
27
- - conditionally apply banner only to esm build ([8c4e8c4](https://github.com/discordjs/voice/commit/8c4e8c4ba5b9013a90de0238a7f2771e9113a62d))
28
-
29
- # [0.7.3](https://github.com/discordjs/voice/compare/v0.7.2...v0.7.3) (2021-11-11)
30
-
31
- ## Bug Fixes
32
-
33
- - **esm:** resolve esm imports ([#229](https://github.com/discordjs/voice/issues/229)) ([616f2bc](https://github.com/discordjs/voice/commit/616f2bcfde47e55ac7b09f4faaa07f15d78c11a5))
34
-
35
- # [0.7.2](https://github.com/discordjs/voice/compare/v0.7.1...v0.7.2) (2021-10-30)
36
-
37
- ## Bug Fixes
38
-
39
- - prism imports for ems ([0bfd6d5](https://github.com/discordjs/voice/commit/0bfd6d5247f89cfc125e7645e9fb7ebfed94bb2f))
40
-
41
- # [0.7.1](https://github.com/discordjs/voice/compare/v0.7.0...v0.7.1) (2021-10-30)
42
-
43
- ## Bug Fixes
44
-
45
- - prism imports for esm ([9222dbf](https://github.com/discordjs/voice/commit/9222dbfedd8bfaeb679133dfa41330ea75a03a70))
46
-
47
- # [0.7.0](https://github.com/discordjs/voice/compare/v0.6.0...v0.7.0) (2021-10-30)
48
-
49
- ## Features
50
-
51
- - export some types so they render in docs ([#211](https://github.com/discordjs/voice/issues/211)) ([a6dad47](https://github.com/discordjs/voice/commit/a6dad4781fb479d22d7bff99888e42368d6d6411))