From ae5b36ac80abd6f714c8a80a86bd363ecf1d0422 Mon Sep 17 00:00:00 2001
From: Tiago Rangel
Date: Sun, 12 Jan 2025 12:03:28 +0000
Subject: [PATCH] Change entry point
---
package.json | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/package.json b/package.json
index 542a25f..9bc5d90 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "capdotjs",
- "version": "0.0.1",
+ "version": "0.0.2",
"author": "Tiago Rangel",
- "main": "index.js",
+ "main": "lib/cap.min.js",
"description": "A modern, lightning-quick PoW captcha",
"keywords": [
"captcha",
@@ -14,7 +14,7 @@
"node"
],
"scripts": {
- "start": "command bun &> /dev/null && bun run index.js || node index.js",
+ "demo": "command bun &> /dev/null && bun run index.js || node index.js",
"build": "command bun &> /dev/null && bun run build.js || node build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"docs:dev": "cd docs && bun run docs:dev",