-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
47 lines (47 loc) · 1.25 KB
/
deno.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
39
40
41
42
43
44
45
46
47
{
"imports": {
"@std/ulid": "jsr:@std/ulid@1.0.0",
"emit": "https://deno.land/x/emit@0.40.0/mod.ts",
"@std/testing/asserts": "https://deno.land/std@0.224.0/testing/asserts.ts",
"canvas": "https://deno.land/x/canvas@v1.4.2/mod.ts",
"@std/http/file-server": "https://deno.land/std@0.224.0/http/file_server.ts",
"tiny-segmenter": "https://esm.sh/tiny-segmenter@0.2.0"
},
"tasks": {
"dev": "deno run --unstable-kv --allow-net --allow-read --allow-write --allow-env --allow-run --watch server.ts",
"build": "deno run --allow-net --allow-read --allow-env --allow-write bundle.ts",
"deploy": "deployctl deploy --project=terminal-image --prod server.ts",
"preview": "deployctl deploy --project=terminal-image server.ts",
"fmt-check": "deno fmt --check"
},
"lint": {
"exclude": [
"./static/",
"./e2e/**/*",
"./e2e/*"
]
},
"fmt": {
"exclude": [
"./static/",
"./e2e/**/*",
"./e2e/*"
],
"lineWidth": 120
},
"test": {
"exclude": [
"./static/",
"./e2e/**/*",
"./e2e/*"
]
},
"deploy": {
"project": "d04b3fe5-a82b-4369-9cb2-6f678c34d7a5",
"exclude": [
"**/node_modules"
],
"include": [],
"entrypoint": "server.ts"
}
}