generated from denorg/starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.jsonc
40 lines (40 loc) · 952 Bytes
/
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
{
"name": "@denorg/scrypt",
"version": "4.4.4",
"exports": {
".": "./mod.ts",
"./cli": "./cli.ts",
"./format": "./lib/format.ts",
"./hmac": "./lib/hmac.ts"
},
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"lint": {
"exclude": [
"lib/_wasm/wasm.js",
"lib/_wasm/out/"
]
},
"tasks": {
"wasmbuild": "RUSTFLAGS='-C target-feature=+simd128' deno run --allow-env --allow-run --allow-read --allow-write --allow-net jsr:@deno/wasmbuild@0.17.1 --out ./lib/_wasm --project scrypt-wasm --sync"
},
"fmt": {
"exclude": [
"target/"
]
},
"publish": {
"exclude": [
"**/*_bench.ts",
".releaserc.json",
"egg.json",
".eggignore",
"_config.yml",
".vscode/"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@0.222.1",
"@std/crypto": "jsr:@std/crypto@0.222.1",
"@std/encoding": "jsr:@std/encoding@0.222.1"
}
}