-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
23 lines (23 loc) · 1.04 KB
/
deno.json
File metadata and controls
23 lines (23 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "freshinvoice",
"description": "A powerful tool for creating and managing invoices effortlessly.",
"tasks": {
"play": "deno run --allow-read --allow-env --allow-write --allow-net --allow-import ./main.js",
"merge1": "deno run --allow-read --allow-write --allow-env --allow-import ../../_dev/merge_files_1.ts",
"merge": "deno run --allow-read --allow-write --allow-env --allow-import ./merge_files.ts",
"reload": "deno run --watch --allow-read --allow-env --allow-write --allow-net --allow-import ./main.js",
"serve": "deno serve --watch --allow-ffi --allow-read --allow-env --allow-write --allow-net --allow-import ./main.js",
"test": "deno run --allow-read --allow-env --allow-write --allow-net ./test.js",
"commit": "git add . -A && git commit -m 'auto' && git push origin main",
"prod": "deployctl deploy --prod"
},
"exports": "./main.js",
"deploy": {
"project": "19c378e7-a0da-4d47-81e7-3e713cd94fb6",
"exclude": [
"**/node_modules"
],
"include": [],
"entrypoint": "main.js"
}
}