@discordjs/voice 0.7.5 → 0.8.0-dev.1644408621.fe11ff5

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,93 +1,88 @@
1
1
  {
2
- "name": "@discordjs/voice",
3
- "version": "0.7.5",
4
- "description": "Implementation of the Discord Voice API for Node.js",
5
- "scripts": {
6
- "pretest": "npm run build",
7
- "test": "jest --pass-with-no-tests",
8
- "test:ci": "jest --no-stack-trace --verbose --pass-with-no-tests",
9
- "prebuild": "npm run lint",
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",
16
- "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
17
- "//prepublishOnly": "npm run lint && npm run test",
18
- "release": "standard-version --preset angular"
19
- },
20
- "main": "./dist/index.js",
21
- "module": "./dist/index.mjs",
22
- "typings": "./dist/index.d.ts",
23
- "exports": {
24
- "import": "./dist/index.mjs",
25
- "require": "./dist/index.js"
26
- },
27
- "directories": {
28
- "lib": "src",
29
- "test": "__tests__"
30
- },
31
- "files": [
32
- "dist"
33
- ],
34
- "author": "Amish Shah <amish@shah.gg>",
35
- "license": "Apache-2.0",
36
- "keywords": [
37
- "discord",
38
- "discord.js",
39
- "audio",
40
- "voice",
41
- "streaming"
42
- ],
43
- "repository": {
44
- "type": "git",
45
- "url": "git+https://github.com/discordjs/voice.git"
46
- },
47
- "bugs": {
48
- "url": "https://github.com/discordjs/voice/issues"
49
- },
50
- "homepage": "https://github.com/discordjs/voice",
51
- "dependencies": {
52
- "@types/ws": "^8.2.0",
53
- "discord-api-types": "^0.24.0",
54
- "prism-media": "^1.3.2",
55
- "tiny-typed-emitter": "^2.1.0",
56
- "tslib": "^2.3.1",
57
- "ws": "^8.2.3"
58
- },
59
- "devDependencies": {
60
- "@babel/core": "^7.16.0",
61
- "@babel/preset-env": "^7.16.0",
62
- "@babel/preset-typescript": "^7.16.0",
63
- "@commitlint/cli": "^14.1.0",
64
- "@commitlint/config-angular": "^14.1.0",
65
- "@discordjs/ts-docgen": "^0.3.2",
66
- "@types/jest": "^27.0.2",
67
- "@types/node": "^16.11.7",
68
- "@typescript-eslint/eslint-plugin": "^5.3.1",
69
- "@typescript-eslint/parser": "^5.3.1",
70
- "eslint": "^8.2.0",
71
- "eslint-config-marine": "^9.0.6",
72
- "eslint-config-prettier": "^8.3.0",
73
- "eslint-plugin-prettier": "^4.0.0",
74
- "husky": "^7.0.4",
75
- "is-ci": "^3.0.1",
76
- "jest": "^27.3.1",
77
- "jest-websocket-mock": "^2.2.1",
78
- "lint-staged": "^11.2.6",
79
- "mock-socket": "^9.0.7",
80
- "prettier": "^2.4.1",
81
- "standard-version": "^9.3.2",
82
- "tsup": "^5.7.0",
83
- "typedoc": "^0.22.8",
84
- "typescript": "^4.4.4"
85
- },
86
- "engines": {
87
- "node": ">=16.0.0",
88
- "npm": ">=7.0.0"
89
- },
90
- "publishConfig": {
91
- "access": "public"
92
- }
93
- }
2
+ "name": "@discordjs/voice",
3
+ "version": "0.8.0-dev.1644408621.fe11ff5",
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
+ },
21
+ "directories": {
22
+ "lib": "src",
23
+ "test": "__tests__"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
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
+ "license": "Apache-2.0",
36
+ "keywords": [
37
+ "discord",
38
+ "discord.js",
39
+ "audio",
40
+ "voice",
41
+ "streaming"
42
+ ],
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/discordjs/discord.js.git"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/discordjs/discord.js/issues"
49
+ },
50
+ "homepage": "https://discord.js.org",
51
+ "dependencies": {
52
+ "@types/ws": "^8.2.0",
53
+ "discord-api-types": "^0.26.1",
54
+ "prism-media": "^1.3.2",
55
+ "tiny-typed-emitter": "^2.1.0",
56
+ "tslib": "^2.3.1",
57
+ "ws": "^8.4.2"
58
+ },
59
+ "devDependencies": {
60
+ "@babel/core": "^7.17.0",
61
+ "@babel/preset-env": "^7.16.11",
62
+ "@babel/preset-typescript": "^7.16.0",
63
+ "@discordjs/ts-docgen": "^0.3.2",
64
+ "@types/jest": "^27.0.2",
65
+ "@types/node": "^16.11.7",
66
+ "@typescript-eslint/eslint-plugin": "^5.10.2",
67
+ "@typescript-eslint/parser": "^5.10.2",
68
+ "eslint": "^8.8.0",
69
+ "eslint-config-marine": "^9.3.2",
70
+ "eslint-config-prettier": "^8.3.0",
71
+ "eslint-plugin-prettier": "^4.0.0",
72
+ "jest": "^27.4.7",
73
+ "jest-websocket-mock": "^2.3.0",
74
+ "mock-socket": "^9.1.2",
75
+ "prettier": "^2.4.1",
76
+ "tsup": "^5.11.13",
77
+ "tweetnacl": "^1.0.3",
78
+ "typedoc": "^0.22.11",
79
+ "typescript": "^4.5.5"
80
+ },
81
+ "engines": {
82
+ "node": ">=16.9.0"
83
+ },
84
+ "publishConfig": {
85
+ "access": "public"
86
+ },
87
+ "stableVersion": "0.8.0-dev"
88
+ }