FediShoop/fedishoop/deno.json

22 lines
563 B
JSON
Raw Normal View History

2024-10-07 14:25:10 +02:00
{
"imports": {
"@fedify/fedify": "jsr:@fedify/fedify@^1.0.2",
"@fedify/redis": "jsr:@fedify/redis@^0.2.0",
"@hongminhee/x-forwarded-fetch": "jsr:@hongminhee/x-forwarded-fetch@^0.2.0",
"@logtape/logtape": "jsr:@logtape/logtape@^0.4.3",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"ioredis": "npm:ioredis@^5.4.1"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
},
"unstable": [
"temporal"
],
"tasks": {
"dev": "deno run -A --watch ./main.ts",
"prod": "deno run -A ./main.ts"
}
}