mirror of
https://github.com/kunkunsh/kunkun-ext-jwt.git
synced 2025-04-02 01:46:43 +00:00
chore: bump version to 0.1.6 and update dependencies
This commit is contained in:
parent
f1ea7120b0
commit
8376f2acf8
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kunkun/kunkun-ext-jwt",
|
"name": "@kunkun/kunkun-ext-jwt",
|
||||||
"version": "0.1.5",
|
"version": "0.1.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"exports": "./mod.ts",
|
"exports": "./mod.ts",
|
||||||
"publish": {
|
"publish": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.kunkun.sh/",
|
"$schema": "https://schema.kunkun.sh/",
|
||||||
"name": "kunkun-ext-jwt",
|
"name": "kunkun-ext-jwt",
|
||||||
"version": "0.1.5",
|
"version": "0.1.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/kunkunsh/kunkun-ext-jwt",
|
"repository": "https://github.com/kunkunsh/kunkun-ext-jwt",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
@ -72,7 +72,7 @@
|
|||||||
"format": "prettier --write ."
|
"format": "prettier --write ."
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kksh/api": "^0.0.53",
|
"@kksh/api": "^0.1.1",
|
||||||
"@kksh/svelte5": "0.1.14",
|
"@kksh/svelte5": "0.1.14",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte5';
|
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';
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
let config: ThemeConfig = {
|
let config: ThemeConfig = {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import '../app.css';
|
import '../app.css';
|
||||||
import { ModeWatcher } from 'mode-watcher';
|
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 { updateTheme } from '@kksh/svelte5';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
import { JwtToken, jwtIsValid, splitJwt } from '$lib/jwt';
|
import { JwtToken, jwtIsValid, splitJwt } from '$lib/jwt';
|
||||||
import { parse, flatten, safeParse } from 'valibot';
|
import { parse, flatten, safeParse } from 'valibot';
|
||||||
import { ModeWatcher } from 'mode-watcher';
|
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 = {
|
let jwtToken: JwtToken = {
|
||||||
header: '',
|
header: '',
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
import timezone from 'dayjs/plugin/timezone';
|
import timezone from 'dayjs/plugin/timezone';
|
||||||
import utc from 'dayjs/plugin/utc';
|
import utc from 'dayjs/plugin/utc';
|
||||||
import { ModeWatcher } from 'mode-watcher';
|
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';
|
import { parse, string, number, union, safeParse } from 'valibot';
|
||||||
|
|
||||||
dayjs.extend(timezone);
|
dayjs.extend(timezone);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user