-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdeno.test.json
More file actions
34 lines (34 loc) · 1.2 KB
/
deno.test.json
File metadata and controls
34 lines (34 loc) · 1.2 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
29
30
31
32
33
34
{
"name": "@pgflow/edge-worker",
"version": "0.0.9",
"license": "Apache-2.0",
"exports": "./src/index.ts",
"unstable": ["sloppy-imports"],
"imports": {
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.7",
"@std/assert": "jsr:@std/assert@^0.224.0",
"@std/async": "jsr:@std/async@^0.224.0",
"@std/crypto/timing-safe-equal": "jsr:@std/crypto@^0.224.0/timing-safe-equal",
"@std/log": "jsr:@std/log@^0.224.13",
"@std/testing/mock": "jsr:@std/testing@^0.224.0/mock",
"postgres": "jsr:@oscar6echo/postgres@3.4.5-d",
"@pgflow/core": "../core/src/index.ts",
"@pgflow/dsl": "../dsl/src/index.ts",
"@pgflow/dsl/supabase": "../dsl/src/platforms/supabase.ts",
"deno/full.d.ts": "npm:@teidesu/deno-types@1.42.4/full.d.ts",
"@supabase/supabase-js": "npm:@supabase/supabase-js@^2.39.0"
},
"tasks": {
"jsr:download-count": "deno run --allow-net jsr:@inbestigator/saves @pgflow/edge-worker"
},
"lint": {
"exclude": ["supabase/functions/", "dist/", "node_modules/"],
"rules": {
"exclude": ["no-slow-types", "no-sloppy-imports"]
}
},
"publish": {
"include": ["README.md", "LICENSE.md", "CHANGELOG.md", "src/**/*.ts"],
"exclude": ["__tests__/**/*"]
}
}