-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
37 lines (37 loc) · 1.1 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
{
"name": "@calamooselabs/robomoose",
"description": "A CLI tool for creating and managing your apps.",
"version": "0.0.1",
"tasks": {
"ascii": "deno run --allow-env=\"DENO_DIR,XDG_CACHE_HOME\" src/ascii/image.ts",
"start": "deno run --allow-env=\"FORCE_COLOR,NO_COLOR,TERM\" ./cli/main.ts",
"numToText": "deno run src/utils/numToText.ts",
"textToAscii": "deno run --allow-read=\"./src/font/fonts\" src/font/font.ts"
},
"exports": {
".`": "src/mod.ts"
},
"imports": {
"@imagemagick/magick-wasm": "npm:@imagemagick/magick-wasm@0.0.32",
"@deno/cache-dir": "jsr:@deno/cache-dir",
"@std/path": "jsr:@std/path",
"#ansi": "./src/ansi/mod.ts",
"#ascii": "./src/ascii/mod.ts",
"#colors": "./src/colors/mod.ts",
"#markdown": "./src/markdown/mod.ts",
"#page": "./src/page/mod.ts",
"#router": "./src/router/mod.ts",
"#terminal": "./src/terminal/mod.ts"
},
"lock": false,
"permissions": {
"read": true,
"env": {
"DENO_DIR": true,
"XDG_CACHE_HOME": true,
"FORCE_COLOR": true,
"NO_COLOR": true,
"TERM": true
}
}
}