This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.75 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
{
"name": "@distube/deezer",
"version": "1.1.0",
"description": "A DisTube custom plugin for supporting Deezer.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": "./dist/index.js",
"directories": {
"lib": "src"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"**/*.{js,ts,json,yml,yaml,md}\"",
"build": "tsup",
"build:check": "tsc --noEmit",
"update": "ncu -u && bun update",
"postinstall": "husky install",
"prepack": "bun run build && pinst -d",
"postpack": "pinst -e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distubejs/deezer.git"
},
"keywords": [
"distube",
"plugin",
"deezer",
"discord",
"music"
],
"author": "Skick",
"license": "MIT",
"bugs": {
"url": "https://github.com/distubejs/deezer/issues"
},
"homepage": "https://github.com/distubejs/deezer#readme",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/jest": "^29.5.12",
"commitlint": "^19.2.1",
"distube": "^4.1.1",
"eslint": "^8.57.0",
"eslint-config-distube": "^1.7.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nano-staged": "^0.8.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"dependencies": {
"undici": "^6.9.0"
},
"peerDependencies": {
"distube": "^3.3.1||4"
},
"nano-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"funding": "https://github.com/distubejs/deezer?sponsor=1"
}