diff --git a/crypto/deno.json b/crypto/deno.json index 24dbe99..a30f2b1 100644 --- a/crypto/deno.json +++ b/crypto/deno.json @@ -1,7 +1,6 @@ { "version": "0.0.5", "name": "@stdext/crypto", - "lock": false, "exports": { "./hash": "./hash.ts" }, diff --git a/deno.json b/deno.json index 1df3aad..981d23b 100644 --- a/deno.json +++ b/deno.json @@ -1,8 +1,9 @@ { "lock": false, "imports": { - "@std/assert": "jsr:@std/assert@^0.224.0", - "@std/path": "jsr:@std/path@^0.224.0" + "@std/assert": "jsr:@std/assert@^1.0.2", + "@std/path": "jsr:@std/path@^1.0.2", + "@std/encoding": "jsr:@std/encoding@^1.0.1" }, "tasks": { "bump_version": "deno run --allow-env=VERSION --allow-read=. --allow-write=. ./_tools/bump_version.ts", @@ -16,7 +17,7 @@ "format": "deno fmt && deno task --cwd crypto format", "format:check": "deno fmt --check && deno task --cwd crypto format:check" }, - "workspaces": [ + "workspace": [ "./crypto", "./encoding", "./http" diff --git a/encoding/deno.json b/encoding/deno.json index 15ff8bd..439b462 100644 --- a/encoding/deno.json +++ b/encoding/deno.json @@ -1,7 +1,6 @@ { "version": "0.0.5", "name": "@stdext/encoding", - "lock": false, "exports": { "./hex": "./hex.ts" } diff --git a/http/deno.json b/http/deno.json index 230de17..8973c68 100644 --- a/http/deno.json +++ b/http/deno.json @@ -1,7 +1,6 @@ { "version": "0.0.5", "name": "@stdext/http", - "lock": false, "exports": { "./header": "./header.ts", "./method": "./method.ts"