From 956bee34359896921efb28b98c183772d36baed6 Mon Sep 17 00:00:00 2001 From: posimai Date: Fri, 17 Apr 2026 11:21:39 +0900 Subject: [PATCH] chore: add package.json with deploy script Fix npm run deploy using parent package.json due to missing local package.json. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..2cee850 --- /dev/null +++ b/package.json @@ -0,0 +1,8 @@ +{ + "name": "posimai-store", + "version": "1.0.0", + "private": true, + "scripts": { + "deploy": "git push gitea main && git push github main" + } +}