-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.02 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": "discord-player-plus",
"description": "Library for quickly creating discord music and sound bots using discord.js v14.",
"version": "2.0.5",
"packageManager": "[email protected]",
"license": "MIT",
"homepage": "https://discordplayerplus.lars-rickert.de",
"files": [
"dist",
"CHANGELOG.md"
],
"author": {
"name": "Lars Rickert",
"url": "https://lars-rickert.de",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/larsrickert/discord-player-plus"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"watch": "pnpm run build --watch src",
"lint": "eslint src --fix --ignore-path .gitignore",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "vitest --coverage",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"@discordjs/opus": ">= 0.8.0",
"@discordjs/voice": ">= 0.11.0",
"discord.js": ">= 14.8.0",
"ffmpeg-static": ">= 5.1.0"
},
"dependencies": {
"deepmerge-ts": "^5.1.0",
"discord-api-types": "~0.37.79",
"isomorphic-unfetch": "^4.0.2",
"libsodium-wrappers": "~0.7.13",
"music-metadata": "^7.14.0",
"play-dl": "^1.9.7",
"spotify-url-info": "^3.2.13",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitest/coverage-v8": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitepress": "^1.1.0",
"vitest": "^1.5.0",
"vitest-mock-extended": "^1.3.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.ts": "eslint --fix --ignore-path .gitignore"
},
"engines": {
"node": ">=16.9.0"
},
"release": {
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
},
{
"name": "rc",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"keywords": [
"music",
"player",
"bot",
"discord",
"discord.js",
"music"
]
}