forked from discordjs/voice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.52 KB
/
package.json
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@discordjs/voice",
"version": "0.6.0",
"description": "Implementation of the Discord Voice API for Node.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Amish Shah <[email protected]>",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:ci": "jest --verbose --ci --no-stack-trace",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}",
"build": "tsc",
"build:check": "tsc --noEmit --incremental false",
"docs": "typedoc src/index.ts",
"prepublishOnly": "rollup-type-bundler -e stream"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discordjs/voice.git"
},
"keywords": [
"discord",
"discord.js",
"audio",
"voice",
"streaming"
],
"bugs": {
"url": "https://github.com/discordjs/voice/issues"
},
"homepage": "https://github.com/discordjs/voice#readme",
"files": [
"dist/*"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@types/ws": "^7.4.4",
"discord-api-types": "^0.22.0",
"prism-media": "^1.3.1",
"tiny-typed-emitter": "^2.0.3",
"ws": "^7.4.4"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@favware/rollup-type-bundler": "^1.0.2",
"@types/jest": "^26.0.23",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"jest": "^27.0.4",
"jest-websocket-mock": "^2.2.0",
"lint-staged": "^11.0.0",
"mock-socket": "^9.0.3",
"prettier": "^2.3.1",
"typedoc": "^0.20.34",
"typescript": "~4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{mjs,js,ts}": [
"eslint --ext .ts --fix"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
],
"scope-case": [
1,
"always",
"pascal-case"
]
}
}
}