-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
49 lines (49 loc) · 1.08 KB
/
deno.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@deco/actors",
"exports": {
".": "./src/actors/mod.ts",
"./hono": "./src/actors/hono/middleware.ts",
"./proxy": "./src/actors/stub.ts",
"./stub": "./src/actors/stub.ts",
"./watch": "./src/actors/util/watch.ts",
"./server-run": "./src/actors/server/run.ts",
"./server-gen": "./src/actors/server/gen.ts",
"./cf": "./src/actors/runtimes/cf/index.ts"
},
"publish": {
"exclude": [
"**/*.bench.ts",
"**/*.test.ts",
"MAINTAINERS.txt",
".github",
"./examples"
]
},
"compilerOptions": {
"lib": [
"deno.ns",
"dom",
"deno.unstable"
]
},
"imports": {
"@hono/hono": "jsr:@hono/hono@^4.6.2"
},
"tasks": {
"check": "deno fmt && deno lint --fix && deno check ./src/actors/mod.ts ./src/actors/hono/middleware.ts",
"test": "rm kv;deno test -A --unstable-kv --env .",
"release": "deno run -A jsr:@deco/scripts/release"
},
"fmt": {
"exclude": [
"./examples"
]
},
"lint": {
"exclude": [
"./examples"
]
},
"lock": false,
"version": "0.19.2"
}