From ad9a0c19f5b2961e887e3090cc5541bb5bee0787 Mon Sep 17 00:00:00 2001 From: Bhargav <119781738+bhargav-developer@users.noreply.github.com> Date: Sat, 20 Dec 2025 17:57:17 +0530 Subject: [PATCH] fix: add missing 'dev' script to package.json This PR adds the dev script to package.json. Why: The project documentation refers to "npm run dev", but the script was missing from the configuration. This ensures that the codebase aligns with the setup instructions and provides a standard entry point for local development. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 3ad6e7254d7..300ad43506e 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "docusaurus": "docusaurus", "start": "docusaurus start", + "dev": "docusaurus start", "build": "docusaurus build", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy",