-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
35 lines (35 loc) · 986 Bytes
/
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
{
"tasks": {
"build": {
"command": "deno run -A run/build.js",
"description": "Builds both Yozo's lib and dev builds, outputting them in `latest/lib.js` and `latest/dev.js`"
},
"watch": {
"command": "deno run -A --watch run/build.js",
"description": "Runs a watcher to build the bundles whenever something changes"
},
"archive": {
"command": "deno run -A run/archive.js",
"description": "Create a new version, archiving the bundles and updating `versions.json`"
},
"test": {
"command": "deno test --allow-read",
"description": "A flagless alias for running the tests"
}
},
"imports": {
"@std/cli": "jsr:@std/[email protected]",
"@std/crypto": "jsr:@std/[email protected]",
"@std/encoding": "jsr:@std/[email protected]",
"@std/fmt": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"esbuild": "npm:[email protected]"
},
"fmt": {
"useTabs": true,
"lineWidth": 80,
"singleQuote": true,
"include": ["test/"]
},
"lock": false
}