-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
58 lines (58 loc) · 2.16 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"author": "slippyex",
"license": "MIT",
"version": "1.5.0",
"unstable": ["kv"],
"nodeModulesDir": "auto",
"tasks": {
"lint": "deno lint",
"format": "deno fmt",
"test": "deno test -A",
"doc": "deno doc --html --name='Pix-Veil' --output=./doc ./src",
"coverage": "deno test --coverage -A && deno coverage --html",
"compile": "deno compile -A --reload --output ./.bin/pix-veil src/cli/index.ts",
"pix-veil:encode": "deno run -A src/cli/index.ts encode",
"pix-veil:decode": "deno run -A src/cli/index.ts decode",
"mass-test": "deno run -A src/cli/batchProcess.demo.ts",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/[email protected]/mod.ts"
},
"compilerOptions": {
"lib": ["deno.window"],
"strict": true,
"allowUnusedLabels": true
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/expect": "jsr:@std/expect@^1.0.4",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/testing": "jsr:@std/testing@^1.0.3",
"@types/figlet": "npm:@types/figlet@^1.5.8",
"@types/lodash": "npm:@types/lodash@^4.17.9",
"@types/seedrandom": "npm:@types/seedrandom@^3.0.8",
"cli-progress": "npm:cli-progress@^3.12.0",
"commander": "npm:commander@^12.1.0",
"figlet": "npm:figlet@^1.7.0",
"gradient-string": "npm:gradient-string@^3.0.0",
"inquirer": "npm:inquirer@^11.1.0",
"p-limit": "npm:p-limit@^6.1.0",
"seedrandom": "npm:seedrandom@^3.0.5",
"sharp": "npm:sharp@^0.33.5"
},
"fmt": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "never",
"include": ["src/", "tests/"],
"exclude": ["tests/test_input", "tests/test_output"]
},
"lint": {
"include": ["src/", "tests/"],
"exclude": ["tests/test_input", "tests/test_output"]
}
}