-
-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
63 lines (63 loc) · 1.96 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
{
"name": "@discord-player/discord-player",
"version": "0.0.0",
"description": "A complete framework to facilitate music commands using discord.js",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"bump": "node ./scripts/set-version.mjs",
"publish-packages": "yarn build && node ./scripts/publish.mjs",
"bootstrap": "node ./scripts/bootstrap.js",
"build": "turbo run build --color --filter=!website --filter=!music-bot",
"docs": "tsx ./scripts/docgen.ts",
"docs:json": "tsx ./scripts/docgen.ts --json",
"build:check": "turbo run build:check --color",
"lint": "turbo run lint --color",
"format": "prettier --write \"{packages,scripts,examples,apps}/**/*.{js,ts,mjs,mts,jsx,tsx,mdx}\"",
"dev:web": "turbo run dev --filter=website",
"build:web": "turbo run build --filter=website",
"start:web": "turbo run preview --filter=website",
"test": "turbo run test --color",
"start:bot": "yarn workspace music-bot start",
"build:bot": "yarn workspace music-bot build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Androz2091/discord-player.git"
},
"keywords": [
"discord-player",
"voip",
"discord",
"voice",
"opus"
],
"author": "Androz2091",
"license": "MIT",
"bugs": {
"url": "https://github.com/Androz2091/discord-player/issues"
},
"homepage": "https://github.com/Androz2091/discord-player#readme",
"packageManager": "yarn@4.6.0",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"ansi-colors": "^4.1.3",
"common-tags": "^1.8.2",
"eslint": "^8.21.0",
"fs-extra": "^11.1.0",
"fumadocs-typescript": "^3.0.2",
"micro-docgen": "0.3.5-compat.0",
"prettier": "^2.8.2",
"rimraf": "^4.1.2",
"tsx": "^4.19.2",
"turbo": "1.10.16",
"typescript": "^5.7.2",
"use-macro": "^1.0.1",
"vitest": "^0.34.6"
}
}