-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
38 lines (38 loc) · 1.13 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
{
"name": "@clappcodes/transporter",
"version": "0.3.5",
"exports": "./mod.ts",
"tasks": {
"dev": "DEBUG=false deno run -A --inspect --env --watch main.ts",
"run": "deno run -A --watch --env --inspect=127.0.0.1:9229 run.ts",
"serve": "deno run -A --env --watch --inspect=127.0.0.1:9230 serve.ts",
"bundle": "deno run -A ./.tools/bundle.ts",
"npm:build": "deno run -A ./.tools/npm.build.ts",
"npm:publish": "deno run -A ./.tools/npm.publish.ts",
"safe": "deno fmt mod.ts && deno lint mod.ts && deno check mod.ts",
"pub": "deno task safe && deno task bundle && deno task npm:publish && deno publish --allow-dirty",
"deploy": "deno task safe && deno task bundle && deployctl deploy --prod",
"install": "deno install -f -A --name serve --env serve.ts --"
},
"exclude": [
".npm",
".bundle"
],
"compilerOptions": {
"lib": [
"deno.window",
"webworker",
"dom"
]
},
"deploy": {
"project": "98ab1ab7-5378-473f-9ac8-12d09564c492",
"name": "transporter",
"exclude": [
"**/node_modules",
".npm"
],
"include": [],
"entrypoint": "main.ts"
}
}