feature: deno config: add

This commit is contained in:
coderiaser 2025-12-24 16:47:48 +02:00
parent ab20a462db
commit dfcd655780
2 changed files with 15 additions and 0 deletions

View file

@ -18,6 +18,7 @@ now.json
app.json
bower.json
manifest.yml
deno.json
bin/release.mjs

14
deno.json Normal file
View file

@ -0,0 +1,14 @@
{
"tasks": {
"start": "deno run -P=cloudcmd bin/cloudcmd.mjs"
},
"permissions": {
"cloudcmd": {
"env": true,
"read": true,
"sys": true,
"net": true,
"run": true
}
}
}