Initial commit from template
Some checks failed
PROMPT_MANAGER Cloudflare Worker / Deploy to ${{ github.ref_name }} environment (push) Failing after 53s

This commit is contained in:
Harsh Gupta
2026-03-05 16:32:07 +05:30
commit d63962d6d6
21 changed files with 1741 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "auth-securechat",
"version": "1.0.0",
"description": "Authentication worker for SecureChat using AnythingLLM",
"main": "src/index.js",
"scripts": {
"dev": "wrangler dev --ip 0.0.0.0",
"deploy": "wrangler deploy"
},
"dependencies": {
"hono": "^3.12.0",
"cookie": "^0.6.0"
},
"devDependencies": {
"wrangler": "^4.24.0"
}
}