-
Notifications
You must be signed in to change notification settings - Fork 57
/
deno.jsonc
34 lines (34 loc) · 1.25 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
{
"name": "@deno/deployctl",
"version": "1.13.0",
"exports": "./deployctl.ts",
"fmt": {
"exclude": ["action/node_modules/"]
},
"lint": {
"exclude": ["action/node_modules/"]
},
"tasks": {
"test": "deno test -A --unstable tests/ src/",
"build-action": "deno run --allow-read --allow-write --allow-net=jsr.io:443 --allow-env ./tools/bundle.ts ./src/utils/mod.ts > ./action/deps.js",
"version-match": "deno run --allow-read --allow-env ./tools/version_match.ts"
},
"imports": {
"@std/fmt": "jsr:@std/[email protected]",
"@std/fmt/colors": "jsr:@std/[email protected]/colors",
"@std/path": "jsr:@std/[email protected]",
"@std/flags": "jsr:@std/[email protected]",
"@std/streams": "jsr:@std/[email protected]",
"@std/streams/text_line_stream": "jsr:@std/[email protected]/text_line_stream",
"@std/jsonc": "jsr:@std/[email protected]",
"@std/encoding": "jsr:@std/[email protected]",
"@std/async": "jsr:@std/[email protected]",
"@std/async/delay": "jsr:@std/[email protected]/delay",
"@std/dotenv": "jsr:@std/[email protected]",
"@std/semver": "jsr:@std/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@denosaurs/wait": "jsr:@denosaurs/[email protected]",
"@denosaurs/tty": "jsr:@denosaurs/[email protected]",
"@deno/emit": "jsr:@deno/[email protected]"
}
}