-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
44 lines (44 loc) · 1.61 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
{
"name": "@wuespace/asn-generator",
"version": "0.0.0-replaced-by-ci",
"exports": {
".": "./main.ts",
"./cli": "./lib/cli/mod.ts",
"./common": "./lib/common/mod.ts",
"./http": "./lib/http/mod.ts"
},
"tasks": {
"dev": "deno run --watch -A main.ts",
"run": "deno run -A main.ts",
"test": "DATA_DIR=data-test ASN_PREFIX=ASN ASN_NAMESPACE_RANGE=50 ASN_ENABLE_NAMESPACE_EXTANSION=1 deno test -A",
"docs": "deno doc --reload --html main.ts",
"lint": "DENO_FUTURE=1 deno lint && deno doc --lint main.ts lib/*/mod.ts",
"check": "deno check main.ts lib/**/*.ts",
"env:all": "deno task env:example && deno task env:docs",
"env:example": "deno run --allow-read --allow-write jsr:@wuespace/[email protected] example -r example.env",
"env:docs": "deno run --allow-read --allow-write jsr:@wuespace/[email protected] docs -o env.md example.env"
},
"imports": {
"$/": "./",
"$cli/": "./lib/cli/",
"$common/": "./lib/common/",
"$http/": "./lib/http/",
"@collinhacks/zod": "npm:zod@^3.23.8",
"@hono/hono": "jsr:@hono/hono@^4.5.11",
"@hono/oidc-auth": "npm:@hono/oidc-auth@^1.2.0",
"@metafloor/bwip-js": "npm:bwip-js@^4.5.1",
"@std/assert": "jsr:@std/assert@^1.0.4",
"@std/cli": "jsr:@std/cli@^1.0.5",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@wuespace/envar": "jsr:@wuespace/envar@^1.1.1"
},
"unstable": ["kv"],
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "@hono/hono/jsx"
},
"lint": {
"exclude": ["deps/", "dist/", "docs/", "node_modules/", "vendor/", "data/"]
}
}