@dupecom/botcha 0.4.4 → 0.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -241,7 +241,7 @@ MIT © [Ramin](https://github.com/i8ramin)
241
241
 
242
242
  ---
243
243
 
244
- Built by [@i8ramin](https://github.com/i8ramin) and Choco 🐢
244
+ Built by [@i8ramin](https://dupe.com) and Choco 🐢
245
245
 
246
246
  ---
247
247
 
@@ -343,3 +343,4 @@ await agent.invoke({
343
343
  ```
344
344
 
345
345
  See [`packages/langchain/README.md`](./packages/langchain/README.md) for full documentation.
346
+ # Test deployment with JWT_SECRET configured
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dupecom/botcha",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Prove you're a bot. Humans need not apply. Reverse CAPTCHA for AI-only APIs.",
5
5
  "workspaces": [
6
6
  "packages/*"
@@ -26,7 +26,7 @@
26
26
  "scripts": {
27
27
  "build": "tsc",
28
28
  "dev": "tsx watch src/index.ts",
29
- "prepublishOnly": "npm run build",
29
+ "prepublishOnly": "bun run build",
30
30
  "test": "vitest",
31
31
  "test:ui": "vitest --ui",
32
32
  "test:run": "vitest run",
@@ -54,11 +54,11 @@
54
54
  "license": "MIT",
55
55
  "repository": {
56
56
  "type": "git",
57
- "url": "https://github.com/i8ramin/botcha"
57
+ "url": "https://github.com/dupe-com/botcha"
58
58
  },
59
59
  "homepage": "https://botcha.ai",
60
60
  "bugs": {
61
- "url": "https://github.com/i8ramin/botcha/issues"
61
+ "url": "https://github.com/dupe-com/botcha/issues"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "express": "^4.0.0 || ^5.0.0"
@@ -80,5 +80,6 @@
80
80
  },
81
81
  "engines": {
82
82
  "node": ">=18"
83
- }
83
+ },
84
+ "packageManager": "bun@1.2.23"
84
85
  }