deleted: package-lock.json

modified:   package.json
	modified:   pnpm-lock.yaml
	modified:   vite.config.ts
	modified:   vite.config.ts
This commit is contained in:
XSWY 2026-06-23 18:47:53 +00:00
parent 3eb71b91d5
commit f3ab9a7037
4 changed files with 6 additions and 8996 deletions

8972
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -50,7 +50,6 @@
"prepublishOnly": "pnpm test && pnpm run lint"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^2.0.6",
"@types/cookie": "^0.6.0",
"@types/crypto-js": "^4.2.2",
"@types/node-fetch": "^2.6.13",

View file

@ -48,9 +48,6 @@ importers:
specifier: ^1.0.1
version: 1.0.1
devDependencies:
'@nabla/vite-plugin-eslint':
specifier: ^2.0.6
version: 2.0.6(eslint@8.57.1)(vite@5.4.21(@types/node@24.9.1)(terser@5.44.0))
'@types/cookie':
specifier: ^0.6.0
version: 0.6.0
@ -442,12 +439,6 @@ packages:
'@microsoft/tsdoc@0.14.2':
resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
'@nabla/vite-plugin-eslint@2.0.6':
resolution: {integrity: sha512-QQZwq7aTx2WtG2/c2ASF+amNAytbLY8LYYc71bECIMzRr7Y7Cx3o6oAQrcb1qQbq2+z2S2rq7i7o5LTskQi8sA==}
peerDependencies:
eslint: ^8.45 || ^9
vite: ^4 || ^5 || ^6 || ^7
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
@ -2451,6 +2442,7 @@ packages:
prebuild-install@7.1.3:
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
engines: {node: '>=10'}
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
hasBin: true
prelude-ls@1.1.2:
@ -3076,6 +3068,7 @@ packages:
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@4.0.0:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
@ -3446,16 +3439,6 @@ snapshots:
'@microsoft/tsdoc@0.14.2': {}
'@nabla/vite-plugin-eslint@2.0.6(eslint@8.57.1)(vite@5.4.21(@types/node@24.9.1)(terser@5.44.0))':
dependencies:
'@types/eslint': 9.6.1
chalk: 4.1.2
debug: 4.4.3
eslint: 8.57.1
vite: 5.4.21(@types/node@24.9.1)(terser@5.44.0)
transitivePeerDependencies:
- supports-color
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
'@emnapi/core': 1.6.0
@ -3622,10 +3605,12 @@ snapshots:
dependencies:
'@types/estree': 1.0.8
'@types/json-schema': 7.0.15
optional: true
'@types/estree@1.0.8': {}
'@types/json-schema@7.0.15': {}
'@types/json-schema@7.0.15':
optional: true
'@types/json5@0.0.29': {}

View file

@ -1,6 +1,5 @@
import path from 'path';
import { defineConfig } from 'vitest/config';
import eslintPlugin from '@nabla/vite-plugin-eslint';
import dts from 'vite-plugin-dts';
import pkg from './package.json';
@ -10,8 +9,7 @@ if (shouldTestProviders) tests = ['src/__test__/providers/**/*.test.ts'];
export default defineConfig((env) => ({
plugins: [
env.mode !== 'test' && eslintPlugin(),
dts({
env.mode !== 'test' && dts({
rollupTypes: true,
}),
],