From a072b39d39991f9240f0207606d8c00a35a5d3e2 Mon Sep 17 00:00:00 2001 From: Amit Dahat <50491208+ammy-git@users.noreply.github.com> Date: Tue, 11 Feb 2025 14:10:59 +0530 Subject: [PATCH] Update package.json --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8d634532..3b07cbb7 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "index.js", "scripts": { "start": "node index.js", - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "build": "webpack --config webpack.config.js" // Adding build step here }, "repository": { "type": "git", @@ -24,5 +25,9 @@ "nodemon": "^2.0.20", "request": "^2.88.2", "wiki-infobox-parser": "^0.1.11" + }, + "devDependencies": { + "webpack": "^5.0.0", // You will need webpack if you're going this route + "webpack-cli": "^4.0.0" } }