-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
30 lines (30 loc) · 866 Bytes
/
Copy pathdeno.json
File metadata and controls
30 lines (30 loc) · 866 Bytes
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
{
"license": "MIT OR Apache-2.0",
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/testing": "jsr:@std/testing@^1.0.17",
"@valibot/valibot": "jsr:@valibot/valibot@^1.2.0",
"grammy": "https://deno.land/x/grammy@v1.41.1/mod.ts",
"grammy/types": "https://deno.land/x/grammy@v1.41.1/types.ts",
"grammy_auto_retry": "https://deno.land/x/grammy_auto_retry@v2.0.2/mod.ts",
"@std/path": "jsr:@std/path@^1",
"@std/streams": "jsr:@std/streams@^1"
},
"fmt": {
"singleQuote": true,
"useTabs": true,
"lineWidth": 80
},
"test": {
"permissions": {
"env": true,
"read": true,
"write": true,
"run": true
}
},
"tasks": {
"cli": "deno run --allow-import --allow-env --allow-read --allow-write --allow-net --allow-run cli.ts",
"tidy": "deno lint && deno check --allow-import && deno fmt && deno test -P --allow-import"
}
}