-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
26 lines (26 loc) · 713 Bytes
/
Copy pathdeno.json
File metadata and controls
26 lines (26 loc) · 713 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
{
"$schema": "https://github.com/denoland/deno/raw/v1.41.0/cli/schemas/config-file.v1.json",
// FIXME: Also include "$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@chances/render-loop",
"version": "0.9.0",
"exports": "./mod.ts",
"description": "A generic and reusable render loop for applications and games.",
"imports": {
"jsr:@std/assert": "jsr:@std/assert@0.222.1",
"jsr:@std/async": "jsr:@std/async@0.222.1"
},
"publish": {
"exclude": [
".github/workflows/",
"tests/**/*.ts"
]
},
"tasks": {
"lint": "deno lint",
"test": "deno test ./tests/mod.ts --trace-leaks"
},
"fmt": {
"lineWidth": 120,
"proseWrap": "preserve"
}
}