This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "plus62radio",
"version": "2.0.0",
"description": "A simple radio bot for Discord written in Typescript",
"homepage": "https://github.com/radio-indonesia/Plus62Radio",
"author": "lrmn <lrmn.is-a.dev>",
"bugs": {
"url": "https://github.com/radio-indonesia/Plus62Radio/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/radio-indonesia/Plus62Radio.git"
},
"keywords": [
"discord",
"typescript",
"bot",
"node",
"discordapp"
],
"scripts": {
"start": "node dist/sharding.js",
"start:dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"start:build": "yarn build && yarn start",
"update": "yarn upgrade-interactive",
"prepare": "is-ci || husky install",
"build": "tsc",
"deploy": "cross-env NODE_ENV=development tsx watch src/deploy.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/is-ci": "^3.0.0",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.5.6",
"eslint": "^8.48.0",
"eslint-config-neon": "^0.1.56",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
},
"dependencies": {
"@discord-player/extractor": "^4.4.1",
"@discordjs/opus": "^0.9.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@keyv/mongo": "^2.2.8",
"@types/follow-redirects": "^1.14.1",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"discord-hybrid-sharding": "^2.1.3",
"discord-player": "^6.6.2",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"follow-redirects": "^1.15.2",
"icecast-parser": "^4.0.2",
"keyv": "^4.5.3",
"lodash-es": "^4.17.21",
"miniget": "^4.2.3",
"tiny-typed-emitter": "^2.1.0",
"ytdl-core": "^4.11.5",
"zod": "^3.22.2"
},
"type": "module",
"packageManager": "[email protected]"
}