From af4ec138c9603a489fe1ff6a0d5b924911398e93 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Fri, 1 Mar 2024 02:37:18 +0900 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20chore:=20upgrade=20deps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit and wait for other deps to publish to jsr --- deno.json | 5 ++++- deps.ts | 14 +++++++------- package.json | 2 +- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/deno.json b/deno.json index dba8babf..f429b755 100644 --- a/deno.json +++ b/deno.json @@ -4,5 +4,8 @@ "lint": "npx eslint src/ test/ mod.ts deploy.ts deps.ts", "check": "deno run -A --check mod.ts", "build-npm": "deno run -A --no-check ./scripts/build_npm.ts" - } + }, + "name": "@harmony/harmony", + "version": "2.9.1", + "exports": "./mod.ts" } diff --git a/deps.ts b/deps.ts index a1b6ab8c..91d20d86 100644 --- a/deps.ts +++ b/deps.ts @@ -1,9 +1,9 @@ export { EventEmitter } from 'https://deno.land/x/event@2.0.0/mod.ts' -export { decompress_with as unzlib } from 'https://unpkg.com/@evan/wasm@0.0.94/target/zlib/deno.js' +export { decompress_with as unzlib } from 'npm:@evan/wasm@0.0.95/target/zlib/node.mjs' export { fetchAuto } from 'https://deno.land/x/fetchbase64@1.0.0/mod.ts' -export { walk } from 'https://deno.land/std@0.152.0/fs/walk.ts' -export { join } from 'https://deno.land/std@0.152.0/path/mod.ts' -export { Mixin } from 'https://esm.sh/ts-mixer@6.0.0' -export { verify as edverify } from 'https://unpkg.com/@evan/wasm@0.0.94/target/ed25519/deno.js' -export { decode as decodeHex } from 'https://deno.land/std@0.152.0/encoding/hex.ts' -export { readAll } from 'https://deno.land/std@0.152.0/streams/conversion.ts' +export { walk } from 'jsr:@std/fs@0.217/walk' +export { join } from 'node:path' +export { Mixin } from 'npm:ts-mixer@6.0.0' +export { verify as edverify } from 'npm:@evan/wasm@0.0.95/target/ed25519/node.mjs' +export { decodeHex } from 'jsr:@std/encoding@0.217/hex' +export { readAll } from 'jsr:@std/io@0.217/read_all' diff --git a/package.json b/package.json index 5a7727ae..4668ed07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@harmonyland/harmony", - "version": "2.9.0", + "version": "2.9.1", "description": "Discord API Library for Deno", "main": "mod.ts", "repository": "https://github.com/harmonyland/harmony.git",