summaryrefslogtreecommitdiff
path: root/deno.json
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-12 14:28:54 -0400
committerseth <[email protected]>2024-10-12 14:59:04 -0400
commit6a2d9e752fab27b59da4f194b0ef6daf7e8b6d81 (patch)
treeed8f9f07861a0a4463dcd910baa349b6cc6656aa /deno.json
parent08912b439bd61088dd849b9342a81341fa9e4a23 (diff)
port to deno
Diffstat (limited to 'deno.json')
-rw-r--r--deno.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/deno.json b/deno.json
new file mode 100644
index 0000000..40a79ea
--- /dev/null
+++ b/deno.json
@@ -0,0 +1,23 @@
+{
+ "tasks": {
+ "start": "deno run --allow-env --allow-net=:8000,api.github.com:443 ./main.ts",
+ "dev": "deno task start --watch",
+ "deployctl": "echo \"import '@deno/deployctl'\" | deno run --allow-env --allow-read --allow-write --allow-sys -"
+ },
+ "imports": {
+ "@deno/deployctl": "jsr:@deno/deployctl@^1.12.0",
+ "@hono/hono": "jsr:@hono/hono@^4.6.4",
+ "@hono/swagger-ui": "npm:@hono/swagger-ui@^0.4.1",
+ "@hono/zod-openapi": "npm:@hono/zod-openapi@^0.16.4",
+ "@hono/zod-validator": "npm:@hono/zod-validator@^0.4.1",
+ "@octokit/types": "npm:@octokit/types@^13.6.1",
+ "zod": "npm:zod@^3.23.8"
+ },
+ "fmt": {
+ "useTabs": true
+ },
+ "lock": {
+ "frozen": true
+ },
+ "unstable": ["kv"]
+}