2021-10-13 14:37:57 +00:00
|
|
|
{
|
2022-02-24 12:10:45 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"useUnknownInCatchVariables": true,
|
2024-03-14 04:20:24 +00:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noUncheckedIndexedAccess": true
|
2022-02-24 12:10:45 +00:00
|
|
|
},
|
2023-07-04 05:05:54 +00:00
|
|
|
"imports": {
|
2024-04-29 07:24:55 +00:00
|
|
|
"@deno/graph": "jsr:@deno/graph@^0.74",
|
2024-04-29 23:37:05 +00:00
|
|
|
"@deno/doc": "jsr:@deno/doc@0.128.1",
|
2024-04-10 07:04:51 +00:00
|
|
|
"npm:/typescript": "npm:typescript@5.4.4",
|
2023-11-20 00:03:51 +00:00
|
|
|
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/"
|
2022-03-17 16:31:32 +00:00
|
|
|
},
|
|
|
|
"tasks": {
|
2024-05-06 04:16:10 +00:00
|
|
|
"test": "RUST_BACKTRACE=1 deno test --unstable-http --unstable-webgpu --doc --allow-all --parallel --coverage --trace-leaks",
|
2024-04-02 10:42:55 +00:00
|
|
|
"test:browser": "git grep --name-only \"This module is browser compatible.\" | grep -v deno.json | grep -v .github/workflows | grep -v _tools | grep -v encoding/README.md | xargs deno check --config browser-compat.tsconfig.json",
|
2022-12-13 04:07:56 +00:00
|
|
|
"fmt:licence-headers": "deno run --allow-read --allow-write ./_tools/check_licence.ts",
|
2024-04-17 06:36:50 +00:00
|
|
|
"lint:deprecations": "deno run --allow-read --allow-net --allow-env ./_tools/check_deprecation.ts",
|
2024-04-22 05:23:12 +00:00
|
|
|
"lint:circular": "deno run --allow-env --allow-read --allow-net=deno.land,jsr.io ./_tools/check_circular_package_dependencies.ts",
|
2024-01-25 09:36:46 +00:00
|
|
|
"lint:mod-exports": "deno run --allow-env --allow-read ./_tools/check_mod_exports.ts",
|
2023-09-13 13:11:01 +00:00
|
|
|
"lint:tools-types": "deno check _tools/*.ts",
|
2024-05-06 07:51:20 +00:00
|
|
|
"lint:docs": "deno run -A _tools/check_docs.ts && deno doc --lint collections/mod.ts bytes/mod.ts datetime/mod.ts url/mod.ts",
|
2024-04-29 23:37:05 +00:00
|
|
|
"lint": "deno lint && deno task fmt:licence-headers --check && deno task lint:circular && deno task lint:deprecations && deno task lint:tools-types && deno task lint:mod-exports && deno task lint:docs",
|
2023-06-26 06:23:09 +00:00
|
|
|
"typos": "typos -c ./.github/workflows/typos.toml",
|
2022-11-07 06:53:46 +00:00
|
|
|
"build:crypto": "deno task --cwd crypto/_wasm wasmbuild",
|
2024-03-28 02:24:37 +00:00
|
|
|
"wasmbuild": "deno run -A jsr:@deno/wasmbuild@0.17.1 --js-ext mjs --sync",
|
2023-12-15 19:42:09 +00:00
|
|
|
"cov:gen": "deno coverage coverage --lcov --output=cov.lcov",
|
|
|
|
"cov:view": "deno coverage --html coverage",
|
2023-11-02 01:03:55 +00:00
|
|
|
"ok": "deno task lint && deno fmt --check && deno task test:browser && deno task test"
|
2023-07-04 05:05:54 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
".git",
|
|
|
|
"crypto/_wasm/target",
|
|
|
|
"cov",
|
|
|
|
"jsonc/testdata",
|
2023-12-21 03:34:17 +00:00
|
|
|
"front_matter/testdata",
|
2024-01-05 07:55:55 +00:00
|
|
|
"coverage",
|
|
|
|
"docs"
|
2024-03-05 03:57:14 +00:00
|
|
|
],
|
|
|
|
"lint": {
|
|
|
|
"rules": {
|
|
|
|
"include": [
|
2024-03-12 00:36:10 +00:00
|
|
|
"camelcase",
|
2024-03-14 11:18:00 +00:00
|
|
|
"no-sync-fn-in-async-fn",
|
2024-04-02 00:57:05 +00:00
|
|
|
"single-var-declarator",
|
|
|
|
"verbatim-module-syntax"
|
2024-03-05 03:57:14 +00:00
|
|
|
]
|
|
|
|
}
|
2024-04-29 02:57:30 +00:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"./archive",
|
|
|
|
"./assert",
|
|
|
|
"./async",
|
|
|
|
"./bytes",
|
|
|
|
"./cli",
|
|
|
|
"./collections",
|
|
|
|
"./crypto",
|
|
|
|
"./csv",
|
|
|
|
"./data_structures",
|
|
|
|
"./datetime",
|
|
|
|
"./dotenv",
|
|
|
|
"./encoding",
|
|
|
|
"./expect",
|
|
|
|
"./fmt",
|
|
|
|
"./front_matter",
|
|
|
|
"./fs",
|
|
|
|
"./html",
|
|
|
|
"./http",
|
|
|
|
"./ini",
|
|
|
|
"./internal",
|
|
|
|
"./io",
|
|
|
|
"./json",
|
|
|
|
"./jsonc",
|
|
|
|
"./log",
|
|
|
|
"./media_types",
|
|
|
|
"./msgpack",
|
|
|
|
"./net",
|
|
|
|
"./path",
|
|
|
|
"./regexp",
|
|
|
|
"./semver",
|
|
|
|
"./streams",
|
|
|
|
"./testing",
|
|
|
|
"./text",
|
|
|
|
"./toml",
|
|
|
|
"./ulid",
|
|
|
|
"./url",
|
|
|
|
"./uuid",
|
|
|
|
"./webgpu",
|
|
|
|
"./yaml"
|
|
|
|
]
|
2021-10-13 14:37:57 +00:00
|
|
|
}
|