-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
44 lines (44 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "@aoc/2024",
"version": "1.11.0",
"license": "MIT",
"exports": "./cli.ts",
"tasks": {
"dev": "deno test -A --watch --hide-stacktraces",
"cli": "deno run -RN ./cli.ts",
"update:version": "deno run --quiet -A ./scripts/update_version.ts"
},
"imports": {
"@cliffy/ansi": "jsr:@cliffy/ansi@1.0.0-rc.5",
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.5",
"@cliffy/prompt": "jsr:@cliffy/prompt@1.0.0-rc.5",
"@pal/datastructures": "jsr:@pal/datastructures@^0.1.1",
"@std/expect": "jsr:@std/expect@1",
"@std/collections": "jsr:@std/collections@1",
"@std/path": "jsr:@std/path@1",
"@std/semver": "jsr:@std/semver@^1.0.3",
"@std/streams": "jsr:@std/streams@^1.0.8",
"@std/testing": "jsr:@std/testing@^1.0.5",
"utils": "./utils/mod.ts"
},
"deploy": {
"project": "ddbf51b9-a707-4c93-912f-7be296f372ee",
"exclude": [
"**/node_modules",
".github",
".git",
".vscode",
"days/**/main_test.ts",
"inputs",
"scripts",
".editorconfig",
".gitignore",
".gitmodules",
"cli.ts",
"README.md",
"renovate.json"
],
"include": [],
"entrypoint": "saas.ts"
}
}