-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
34 lines (34 loc) · 1.16 KB
/
deno.jsonc
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
{
"name": "@tui/nice",
"version": "0.6.1",
"exports": {
".": "./mod.ts",
"./block": "./src/block.ts",
"./unit": "./src/unit.ts",
"./style_block": "./src/style_block.ts",
"./margin": "./src/margin/mod.ts",
"./border": "./src/border/mod.ts",
"./text": "./src/text/mod.ts",
"./layout": "./src/layout/mod.ts",
"./layout/horizontal": "./src/layout/horizontal_block.ts",
"./layout/vertical": "./src/layout/vertical_block.ts",
"./layout/overlay": "./src/layout/overlay_block.ts"
},
"imports": {
"@tui/strings": "jsr:@tui/strings@^0",
"@tui/signals": "jsr:@tui/signals@^0",
// tests
"@std/assert": "jsr:@std/assert@^0.218",
"@crayon/crayon": "jsr:@crayon/[email protected]",
"@crayon/literal": "jsr:@crayon/[email protected]"
},
"fmt": {
"lineWidth": 120
},
"tasks": {
"demo": "deno run --allow-hrtime examples/demo.ts",
"demo-watch": "deno run --watch --allow-hrtime examples/demo.ts",
"test": "deno run --allow-hrtime --allow-read --allow-net tests/nice-test-runner.ts",
"test-watch": "deno run --watch --allow-hrtime --allow-read --allow-net tests/nice-test-runner.ts"
}
}