-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
41 lines (35 loc) · 1.1 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
35
36
37
38
39
40
41
{
"name": "@crayon/crayon",
"version": "4.0.0-alpha.4",
"imports": {
// tests
"@std/assert": "jsr:@std/assert@0.221.0",
"@beast/compat": "jsr:@beast/compat@^0.2.5",
// bench
"@crayon/literal": "jsr:@crayon/literal@1.0.0-alpha.4"
},
"exports": {
".": "./main.ts",
"./raw": "./src/crayon.ts",
"./base": "./src/base.ts",
"./styles": "./src/styles/styles.ts",
"./extend": "./src/extend.ts",
"./utils": "./src/utils/mod.ts"
},
"fmt": {
"lineWidth": 100
},
"tasks": {
"test-all": "deno task test && deno task test-nocolor && deno task test-colorless",
"test": "deno test --coverage --fail-fast=1 --allow-env",
"test-nocolor": "NO_COLOR=1 deno task test",
"test-colorless": "COLORTERM='' TERM='' deno task test",
"bench-all": "deno task bench && deno task bench-nocolor && deno task bench-colorless",
"bench": "deno bench --no-check --allow-read --allow-env",
"bench-nocolor": "NO_COLOR=1 deno task bench",
"bench-colorless": "COLORTERM='' TERM='' deno task bench"
},
"compilerOptions": {
"lib": ["es2023", "dom"]
}
}