From 1eed59e43ed9c7537527c4bd712ce71070dd0545 Mon Sep 17 00:00:00 2001 From: Yossi Saadi Date: Tue, 10 Mar 2026 17:10:47 +0200 Subject: [PATCH] chore: set initial package versions to 0.0.1 Lower all three packages from 0.1.0 to 0.0.1 before first public release. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/core/package.json | 16 +++++++++++++--- packages/react/package.json | 19 +++++++++++++++---- packages/server/package.json | 17 ++++++++++++++--- 3 files changed, 42 insertions(+), 10 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index 05dd74b..5e79e03 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@mondaycom/hatcha-core", - "version": "0.1.0", + "version": "0.0.1", "description": "Challenge generation and cryptographic verification for HATCHA", "type": "module", "main": "./dist/index.cjs", @@ -14,8 +14,18 @@ } }, "sideEffects": false, - "keywords": ["captcha", "reverse-captcha", "ai-agent", "verification", "hmac", "challenge", "hatcha"], - "files": ["dist"], + "keywords": [ + "captcha", + "reverse-captcha", + "ai-agent", + "verification", + "hmac", + "challenge", + "hatcha" + ], + "files": [ + "dist" + ], "scripts": { "build": "tsup", "dev": "tsup --watch", diff --git a/packages/react/package.json b/packages/react/package.json index 0e28a99..61a5070 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@mondaycom/hatcha-react", - "version": "0.1.0", + "version": "0.0.1", "description": "React component for HATCHA — reverse CAPTCHA for agents", "type": "module", "main": "./dist/index.cjs", @@ -14,9 +14,20 @@ }, "./styles.css": "./dist/styles.css" }, - "sideEffects": ["./dist/styles.css"], - "keywords": ["captcha", "reverse-captcha", "ai-agent", "react", "component", "hatcha"], - "files": ["dist"], + "sideEffects": [ + "./dist/styles.css" + ], + "keywords": [ + "captcha", + "reverse-captcha", + "ai-agent", + "react", + "component", + "hatcha" + ], + "files": [ + "dist" + ], "scripts": { "build": "tsup", "dev": "tsup --watch", diff --git a/packages/server/package.json b/packages/server/package.json index d3ad588..efb4da5 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@mondaycom/hatcha-server", - "version": "0.1.0", + "version": "0.0.1", "description": "Server middleware for HATCHA — Next.js and Express handlers", "type": "module", "main": "./dist/index.cjs", @@ -24,8 +24,19 @@ } }, "sideEffects": false, - "keywords": ["captcha", "reverse-captcha", "ai-agent", "server", "nextjs", "express", "middleware", "hatcha"], - "files": ["dist"], + "keywords": [ + "captcha", + "reverse-captcha", + "ai-agent", + "server", + "nextjs", + "express", + "middleware", + "hatcha" + ], + "files": [ + "dist" + ], "scripts": { "build": "tsup", "dev": "tsup --watch",