This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.13 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
{
"name": "starmusic",
"version": "3.0.0",
"description": "Reproduce tu música fácilmente, en español y sin complicaciones.",
"main": "./dist/Main",
"typings": "./dist/Main.d.ts",
"engines": {
"node": ">=16.6.x"
},
"scripts": {
"docs": "typedoc",
"test": "mocha -r ts-node/register --extension ts",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"deploy:docs": "gh-pages -d docs",
"build": "tsc -b",
"prepublish": "npm run lint:fix && npm run build"
},
"author": {
"name": "DavichoStar",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://stararmydev.github.io/starmusic/",
"repository": {
"type": "git",
"url": "git+https://github.com/StarArmyDev/starmusic.git"
},
"bugs": {
"url": "https://github.com/StarArmyDev/starmusic/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"music",
"español",
"discord",
"discord.js",
"starlight",
"youtube-discord"
],
"files": [
"dist/*"
],
"dependencies": {
"@discordjs/opus": "^0.x",
"@discordjs/voice": "^0.x",
"discord.js": "^13.x",
"ffmpeg-static": "^4.x",
"popyt": "^5.x",
"tweetnacl": "^1.x",
"youtube-dl-exec": "^1.x",
"ytpl": "^2.x"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
}
}