fix: migrate to jsr:@b-fuze/deno-dom

This commit is contained in:
Alexander Nicholson 4584443+DragonStuff@users.noreply.github.com
2024-11-20 17:02:24 +09:00
parent aff7414f57
commit 7bc6533a6b
2 changed files with 14 additions and 11 deletions

15
deno.lock generated
View File

@@ -1,14 +1,17 @@
{ {
"version": "3", "version": "4",
"packages": {
"specifiers": { "specifiers": {
"npm:hono": "npm:hono@4.6.10" "jsr:@b-fuze/deno-dom@*": "0.1.48",
"npm:hono@*": "4.6.10"
},
"jsr": {
"@b-fuze/deno-dom@0.1.48": {
"integrity": "bf5b591aef2e9e9c59adfcbb93a9ecd45bab5b7c8263625beafa5c8f1662e7da"
}
}, },
"npm": { "npm": {
"hono@4.6.10": { "hono@4.6.10": {
"integrity": "sha512-IXXNfRAZEahFnWBhUUlqKEGF9upeE6hZoRZszvNkyAz/CYp+iVbxm3viMvStlagRJohjlBRGOQ7f4jfcV0XMGg==", "integrity": "sha512-IXXNfRAZEahFnWBhUUlqKEGF9upeE6hZoRZszvNkyAz/CYp+iVbxm3viMvStlagRJohjlBRGOQ7f4jfcV0XMGg=="
"dependencies": {}
}
} }
}, },
"redirects": { "redirects": {

View File

@@ -2,7 +2,7 @@ import { ListObjectsOptions, ListObjectsResult, StorageObject } from "../types/m
import { S3, type ListObjectsV2Request } from "https://deno.land/x/aws_api@v0.8.1/services/s3/mod.ts"; import { S3, type ListObjectsV2Request } from "https://deno.land/x/aws_api@v0.8.1/services/s3/mod.ts";
import { ApiFactory } from "https://deno.land/x/aws_api@v0.8.1/client/mod.ts"; import { ApiFactory } from "https://deno.land/x/aws_api@v0.8.1/client/mod.ts";
import { getSignedUrl } from "https://deno.land/x/aws_s3_presign@2.2.1/mod.ts"; import { getSignedUrl } from "https://deno.land/x/aws_s3_presign@2.2.1/mod.ts";
import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.48/deno-dom-wasm.ts"; import { DOMParser, Element } from "jsr:@b-fuze/deno-dom";
interface Credentials { interface Credentials {
awsAccessKeyId: string; awsAccessKeyId: string;