Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
19 changes: 15 additions & 4 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
17 changes: 14 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down