Initial commit of Websearch

This commit is contained in:
2024-11-10 16:23:51 -07:00
parent 8275fca4a7
commit 60c7822b04
5 changed files with 258 additions and 1 deletions

12
deno.json Normal file
View File

@@ -0,0 +1,12 @@
{
"tasks": {
"dev": "deno run --allow-env=HOME,NODE_V8_COVERAGE --allow-net --allow-read --allow-write main.ts",
"prod": "deno run --allow-env=HOME,NODE_V8_COVERAGE --allow-net --allow-read --allow-write main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/fs": "jsr:@std/fs@^1.0.5",
"@std/yaml": "jsr:@std/yaml@^1.0.5"
}
}