This repository has been archived by the owner on Apr 3, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 2.53 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
{
"name": "@skyra/audio",
"version": "2.0.0",
"description": "A TypeScript wrapper for Lavalink.",
"author": "@skyra",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"sideEffects": "false",
"homepage": "https://skyra-project.github.io/audio",
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"scripts": {
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"docs": "typedoc",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn up \"@*/*\" -i && yarn up \"*\" -i",
"clean": "node scripts/clean.mjs",
"build": "tsc -b src && gen-esm-wrapper dist/index.js dist/index.mjs",
"watch": "tsc -b src -w",
"sversion": "standard-version",
"prepublishOnly": "yarn build",
"prepare": "husky install .github/husky"
},
"dependencies": {
"backoff": "^2.5.0",
"tslib": "^2.3.1",
"ws": "^8.5.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@sapphire/eslint-config": "^4.3.3",
"@sapphire/prettier-config": "^1.4.2",
"@sapphire/ts-config": "^3.3.4",
"@types/backoff": "^2.5.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.8",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "^0.30.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/audio.git"
},
"engines": {
"node": ">=v14.18.0",
"npm": ">=7.24.2"
},
"keywords": [
"audio",
"lavalink",
"typescript",
"ts",
"utility"
],
"bugs": {
"url": "https://github.com/skyra-project/audio/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.2.0"
}