-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
28 lines (28 loc) · 1.08 KB
/
deno.json
File metadata and controls
28 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"version": "0.1.0",
"unstable": [
"otel",
"sloppy-imports"
],
"tasks": {
"dev": "deno run --allow-env=HOST,PORT,HOSTED,PG_DUMP_BINARY,PGPASSWORD,PGSSL,PGIDLE_TIMEOUT,PGMAX_LIFETIME,PGMAX_PIPELINE,PGBACKOFF,PGKEEP_ALIVE,PGPREPARE,PGDEBUG,PGFETCH_TYPES,PGPUBLICATIONS,PGTARGET_SESSION_ATTRS,PGAPPNAME,PGCONNECT_TIMEOUT,PGTARGETSESSIONATTRS,PGPORT,PGMAX --allow-run --allow-net --allow-read=./bin --deny-sys --watch main.ts"
},
"imports": {
"@opentelemetry/api": "jsr:@opentelemetry/api@^1.9.0",
"@rabbit-company/rate-limiter": "jsr:@rabbit-company/rate-limiter@^3.0.0",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/collections": "jsr:@std/collections@^1.1.1",
"postgres": "https://deno.land/x/postgresjs@v3.4.7/mod.js",
"zod": "npm:zod@^3.25.67"
},
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true
},
"fmt": {
"singleQuote": false,
"trailingCommas": "onlyMultiLine"
}
}