22 lines
609 B
JSON
22 lines
609 B
JSON
{
|
|
"name": "@elydora/cloudflare-worker",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json --outDir dist",
|
|
"check": "tsc --noEmit -p tsconfig.json",
|
|
"public-cache:publish": "npm run build && node scripts/publish_public_cache.mjs",
|
|
"test": "tsc -p tsconfig.test.json --outDir dist && node --test dist/tests/*.test.js"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "4.20260508.1",
|
|
"@types/node": "24.12.3",
|
|
"typescript": "6.0.3",
|
|
"wrangler": "4.90.0"
|
|
},
|
|
"dependencies": {
|
|
"better-auth": "^1.6.9"
|
|
}
|
|
}
|