This commit is contained in:
abearxiong 2025-03-26 22:48:22 +08:00
parent 91c90c819f
commit f2b850a9ea
4 changed files with 22 additions and 5 deletions

3
.npmrc
View File

@ -1,2 +1,3 @@
//npm.xiongxiao.me/:_authToken=${ME_NPM_TOKEN}
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
ignore-workspace-root-check=true

View File

@ -17,13 +17,13 @@
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^6.0.0",
"@kevisual/query": "0.0.15",
"@kevisual/router": "0.0.9",
"antd": "^5.24.5",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.484.0",
"nanoid": "^5.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
@ -32,6 +32,7 @@
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@kevisual/query": "0.0.15",
"@kevisual/types": "^0.0.6",
"@tailwindcss/vite": "^4.0.16",
"@types/node": "^22.13.13",

18
pnpm-lock.yaml generated
View File

@ -11,9 +11,6 @@ importers:
'@ant-design/icons':
specifier: ^6.0.0
version: 6.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@kevisual/query':
specifier: 0.0.15
version: 0.0.15(ws@8.18.0)
'@kevisual/router':
specifier: 0.0.9
version: 0.0.9
@ -32,6 +29,9 @@ importers:
lodash-es:
specifier: ^4.17.21
version: 4.17.21
lucide-react:
specifier: ^0.484.0
version: 0.484.0(react@19.0.0)
nanoid:
specifier: ^5.1.5
version: 5.1.5
@ -51,6 +51,9 @@ importers:
'@eslint/js':
specifier: ^9.23.0
version: 9.23.0
'@kevisual/query':
specifier: 0.0.15
version: 0.0.15(ws@8.18.0)
'@kevisual/types':
specifier: ^0.0.6
version: 0.0.6
@ -1330,6 +1333,11 @@ packages:
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
lucide-react@0.484.0:
resolution: {integrity: sha512-oZy8coK9kZzvqhSgfbGkPtTgyjpBvs3ukLgDPv14dSOZtBtboryWF5o8i3qen7QbGg7JhiJBz5mK1p8YoMZTLQ==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
@ -3197,6 +3205,10 @@ snapshots:
dependencies:
yallist: 3.1.1
lucide-react@0.484.0(react@19.0.0):
dependencies:
react: 19.0.0
math-intrinsics@1.1.0: {}
merge2@1.4.1: {}

3
src/modules/query.ts Normal file
View File

@ -0,0 +1,3 @@
import { QueryClient } from '@kevisual/query';
export const query = new QueryClient();