From f20a498f59c445eaa68e2fa4875218a4c986dbf4 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Tue, 3 Mar 2026 10:23:37 +0700 Subject: [PATCH] fix: Add missing package.json at root --- package.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 000000000..26f752b21 --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "dealplustech-astro", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@tailwindcss/vite": "^4.2.1", + "astro": "^5.17.1", + "tailwindcss": "^4.2.1" + } +}