-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "musicord",
"version": "0.0.1-beta",
"description": "A simple, powerful, and user-friendly music package for your Discord bot. Supports v14 of DJS !",
"main": "./src/index.ts",
"types": "./src/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext .ts",
"build": "rimraf dist && tsc && gen-esm-wrapper ./dist/src/index.js ./dist/src/index.mjs",
"docs": "ts-docs",
"fix": "eslint src --ext .ts --fix",
"test": "ts-node ./test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RemyK888/musicord.git"
},
"keywords": [
"musicord",
"discord-player",
"discord-music-system",
"distube",
"music",
"discord",
"bot",
"youtube",
"discord-music-",
"discord-music-player",
"discord-youtube",
"youtube-music"
],
"author": "RemyK",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RemyK888/musicord/issues"
},
"homepage": "https://musicord.js.org/",
"dependencies": {
"@discordjs/voice": "^0.9.0-dev.1647259738.2297c2b",
"discord.js": "^14.0.0-dev.1647259751.2297c2b",
"ffmpeg-static": "^4.4.1",
"prism-media": "^1.3.2",
"undici": "^4.15.1"
},
"devDependencies": {
"@discordjs/rest": "^0.4.0-dev.1646654929.b162f27",
"@ts-docs/default-docs-structure": "^0.4.2",
"@ts-docs/ts-docs": "^0.4.2",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"discord-api-types": "^0.28.0",
"eslint": "^8.11.0",
"gen-esm-wrapper": "^1.1.3",
"opusscript": "^0.0.8",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"tweetnacl": "^1.0.3",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=16.9.0"
},
"exports": {
"import": "./src/index.mjs",
"require": "./src/index.js"
}
}