-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 923 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 923 Bytes
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
{
"name": "@tryforge/forge.music",
"version": "1.0.1",
"description": "Extension to add music functionality to your ForgeScript bot.",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"test": "node ./__test__"
},
"keywords": [
"forgescript",
"forge",
"music",
"botforge",
"bdfd-music"
],
"author": "BotForge",
"packageManager": "pnpm@10.19.0",
"license": "GPL-3.0",
"devDependencies": {
"@tryforge/forgescript": "^2.5.0",
"discord-player-youtubei": "^1.4.1",
"discord.js": "^14.17.3",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3"
},
"dependencies": {
"@discord-player/extractor": "^7.1.0",
"discord-player": "^7.1.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@discord-player/extractor": "7"
}
}
}
}