From 482063a2e38f05ceae645ce868ce4bb60fa893f9 Mon Sep 17 00:00:00 2001 From: 0xNived Date: Wed, 10 Dec 2025 11:46:39 +0530 Subject: [PATCH] fix: move debug from devDependencies to dependencies Fixes #196 The debug module was incorrectly placed in devDependencies, causing 'Cannot find module debug' errors when the package is installed from npm. This fix moves debug to dependencies where it belongs since it's imported in src/downloader/images.ts --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e2b7cb3d..d00cbd5c 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ "@types/react-dom": "^19.1.9", "@typescript-eslint/eslint-plugin": "^8.43.0", "@typescript-eslint/parser": "^8.43.0", - "debug": "^4.4.1", "discord.js": "^14.22.1", "dotenv": "^17.2.2", "eslint": "^9.35.0", @@ -57,6 +56,7 @@ "dependencies": { "@derockdev/discord-components-core": "^3.6.1", "@derockdev/discord-components-react": "^3.6.1", + "debug": "^4.4.1", "discord-markdown-parser": "~1.2.0", "react": "19.1.1", "react-dom": "19.1.1",