-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
36 lines (36 loc) · 1.38 KB
/
deno.jsonc
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
{
"name": "@justinmchase/grove",
"version": "0.6.1",
"exports": {
".": "./mod.ts",
"./controllers": "./src/controllers/mod.ts",
"./errors": "./src/errors/mod.ts",
"./logging": "./src/logging/mod.ts",
"./modes": "./src/modes/mod.ts",
"./services": "./src/services/mod.ts",
"./util": "./src/util/mod.ts"
},
"tasks": {
"check": "deno fmt && deno lint && deno test && npx jsr publish --dry-run --allow-dirty",
"example": "deno run -A example/main.ts",
"example:web": "deno run -A example/main.ts web",
"example:job": "deno run -A example/main.ts job",
"example:job:hello": "deno run -A example/main.ts job hello",
"watch:test": "deno test src --watch",
"watch:example:web": "deno run --watch -A example/main.ts"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@db/mongo": "jsr:@db/mongo@^0.33.0",
"@justinmchase/github-api": "jsr:@justinmchase/[email protected]",
"@justinmchase/serializable": "jsr:@justinmchase/serializable@^0.3.13",
"@justinmchase/type": "jsr:@justinmchase/type@^0.2.4",
"@oak/oak": "jsr:@oak/oak@^17.1.3",
"@std/assert": "jsr:@std/assert@^1.0.7",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/testing": "jsr:@std/testing@^1.0.4",
"@wok/case": "jsr:@wok/case@^1.0.1"
}
}