chore: bump version to 0.1.6 and update dependencies

This commit is contained in:
Huakun Shen 2025-02-07 00:51:55 -05:00
parent f1ea7120b0
commit 8376f2acf8
No known key found for this signature in database
7 changed files with 7 additions and 7 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "@kunkun/kunkun-ext-jwt",
"version": "0.1.5",
"version": "0.1.6",
"license": "MIT",
"exports": "./mod.ts",
"publish": {

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.kunkun.sh/",
"name": "kunkun-ext-jwt",
"version": "0.1.5",
"version": "0.1.6",
"license": "MIT",
"repository": "https://github.com/kunkunsh/kunkun-ext-jwt",
"kunkun": {
@ -72,7 +72,7 @@
"format": "prettier --write ."
},
"dependencies": {
"@kksh/api": "^0.0.53",
"@kksh/api": "^0.1.1",
"@kksh/svelte5": "0.1.14",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",

View File

@ -1,6 +1,6 @@
<script lang="ts">
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte5';
import { ui } from '@kksh/api/ui/iframe';
import { ui } from '@kksh/api/ui/custom';
import { onMount } from 'svelte';
let config: ThemeConfig = {

View File

@ -1,7 +1,7 @@
<script>
import '../app.css';
import { ModeWatcher } from 'mode-watcher';
import { ui } from '@kksh/api/ui/iframe';
import { ui } from '@kksh/api/ui/custom';
import { updateTheme } from '@kksh/svelte5';
import { onMount } from 'svelte';

View File

@ -5,7 +5,7 @@
import { JwtToken, jwtIsValid, splitJwt } from '$lib/jwt';
import { parse, flatten, safeParse } from 'valibot';
import { ModeWatcher } from 'mode-watcher';
import { clipboard, toast, ui } from '@kksh/api/ui/iframe';
import { clipboard, toast, ui } from '@kksh/api/ui/custom';
let jwtToken: JwtToken = {
header: '',

View File

@ -8,7 +8,7 @@
import timezone from 'dayjs/plugin/timezone';
import utc from 'dayjs/plugin/utc';
import { ModeWatcher } from 'mode-watcher';
import { clipboard, toast, ui, log } from '@kksh/api/ui/iframe';
import { clipboard, toast, ui, log } from '@kksh/api/ui/custom';
import { parse, string, number, union, safeParse } from 'valibot';
dayjs.extend(timezone);