Add a command-line cline powered by deno

This commit is contained in:
Matt Rubens
2024-11-20 23:21:38 -05:00
parent e55696e247
commit 1c471bd3cb
12 changed files with 1103 additions and 0 deletions

13
cli/deno.jsonc Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"allowJs": true,
"strict": true,
"lib": ["deno.ns", "dom"]
},
"tasks": {
"start": "deno run --allow-read=. mod.ts",
"dev": "deno run --allow-read=. mod.ts",
"install": "deno install --allow-read --allow-write --allow-net --allow-env --allow-run --global --name cline mod.ts",
"check": "deno check mod.ts"
}
}