-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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": "nekodj",
"author": "luketheneko",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build:dev": "tsc --noEmit && echo ✔ Ok",
"build": "tsc",
"dev": "tsx --env-file .env ./src/index.ts",
"dev:dev": "tsx --env-file .env.development ./src/index.ts",
"watch": "tsx --watch --env-file .env ./src/index.ts",
"watch:dev": "tsx --watch --env-file .env.development ./src/index.ts",
"start": "node --env-file .env ./dist/index.js",
"start:dev": "node --env-file .env.development ./dist/index.js"
},
"dependencies": {
"@discord-player/extractor": "^4.4.7",
"@magicyan/discord": "^1.0.33",
"@magicyan/discord-ui": "^0.2.0",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"discord-player": "^6.6.8",
"discord.js": "^14.15.2",
"fast-glob": "^3.3.2",
"ffmpeg-static": "^5.2.0",
"mediaplex": "^0.0.9",
"ytdl-core": "^4.11.5",
"zod": "^3.23.7"
},
"devDependencies": {
"@types/node": "^20.14.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^9.4.0",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
},
"imports": {
"#base": [
"./dist/discord/base/index.js"
],
"#settings": [
"./dist/settings/index.js"
],
"#database": [
"./dist/database/index.js"
],
"#functions": [
"./dist/functions/index.js"
],
"#classes": [
"./dist/classes/index.js"
],
"#tools": [
"./dist/tools/index.js"
],
"#menus": [
"./dist/menus/index.js"
],
"#tasks": [
"./dist/tasks/index.js"
],
"#forms": [
"./dist/forms/index.js"
],
"#lang/*": [
"./lang/*"
]
}
}