From 8f3d443d33e47ec6451007d01eca146806b08fb8 Mon Sep 17 00:00:00 2001 From: Bob Date: Tue, 7 Jan 2025 13:49:09 +0100 Subject: [PATCH] Remove duplicate deps --- client/apps/balancing/package.json | 12 +- client/apps/docs/package.json | 13 +- client/apps/game/package.json | 47 +- client/apps/landing/package.json | 22 +- client/config/package.json | 8 +- client/package.json | 51 +- contracts/package.json | 14 - .../scripts/deployment/package.json | 7 +- package.json | 31 +- pnpm-lock.yaml | 725 ++++++------------ pnpm-workspace.yaml | 4 +- 11 files changed, 320 insertions(+), 614 deletions(-) delete mode 100644 contracts/package.json diff --git a/client/apps/balancing/package.json b/client/apps/balancing/package.json index 26ec10094..2e96b66d7 100644 --- a/client/apps/balancing/package.json +++ b/client/apps/balancing/package.json @@ -10,18 +10,16 @@ "preview": "vite preview" }, "dependencies": { - "@radix-ui/react-icons": "^1.3.0", - "@tanstack/react-table": "^8.20.5", - "class-variance-authority": "^0.7.0", - "tailwindcss-animate": "^1.0.7" + + "@tanstack/react-table": "^8.20.5" }, "devDependencies": { "@eslint/js": "^9.9.0", - "autoprefixer": "^10.4.18", + "eslint-plugin-react-hooks": "^5.1.0-rc.0", "eslint-plugin-react-refresh": "^0.4.9", - "globals": "^15.9.0", - "postcss": "^8.4.35", + + "tailwindcss": "^3.4.1", "typescript-eslint": "^8.0.1" } diff --git a/client/apps/docs/package.json b/client/apps/docs/package.json index 519f7c9bb..50bd92e18 100644 --- a/client/apps/docs/package.json +++ b/client/apps/docs/package.json @@ -3,20 +3,19 @@ "version": "0.1.0", "type": "module", "scripts": { - "dev": "pnpm --dir ./client/apps/game dev", - "dev:landing": "pnpm --dir ./client/apps/landing dev", - "dev:docs": "vocs dev", "build": "pnpm --dir ./client/apps/game build", - "build:landing": "pnpm --dir ./client/apps/landing build", "build:docs": "vocs build", + "build:landing": "pnpm --dir ./client/apps/landing build", "build:packages": "pnpm --dir ./client/sdk/packages/eternum build", - "lint": "pnpm --recursive run lint", - "lint:fix": "pnpm --recursive run lint:fix", + "dev": "pnpm --dir ./client/apps/game dev", + "dev:docs": "vocs dev", + "dev:landing": "pnpm --dir ./client/apps/landing dev", "format": "pnpm prettier --write .", "format:check": "pnpm prettier --check .", "knip": "npx knip --exclude binaries,dependencies", + "lint": "pnpm --recursive run lint", + "lint:fix": "pnpm --recursive run lint:fix", "test": "pnpm --recursive run test" }, - "packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee" } diff --git a/client/apps/game/package.json b/client/apps/game/package.json index 95d3b07e3..df0798124 100644 --- a/client/apps/game/package.json +++ b/client/apps/game/package.json @@ -3,46 +3,45 @@ "version": "0.0.1", "type": "module", "scripts": { - "dev": "vite", "build": "tsc && vite build", - "preview": "vite preview", - "test": "vitest run", - "test:watch": "vitest", - "test:ui": "vitest --ui", "coverage": "vitest run --coverage", + "dev": "vite", + "generate-pwa-assets": "pwa-assets-generator", "lint": "eslint .", "lint:fix": "eslint . --ext .ts,.tsx --fix", - "generate-pwa-assets": "pwa-assets-generator" + "preview": "vite preview", + "test": "vitest run", + "test:ui": "vitest --ui", + "test:watch": "vitest" }, "dependencies": { - "three": "^0.166.0", - "zustand": "^4.5.2", - "wouter": "^2.12.1", - "lodash": "^4.17.21", + "@latticexyz/utils": "^2.0.0-next.12", + "@vercel/analytics": "^1.2.2", + "buffer": "^6.0.3", "graphql-request": "^7.1.2", - "three-stdlib": "^2.29.5", + "gsap": "^3.12.5", + "lil-gui": "^0.19.2", + "lodash": "^4.17.21", + "postprocessing": "^6.36.2", + "react-draggable": "^4.4.6", "react-shepherd": "^6.1.6", "shepherd.js": "^14.3.0", - "react-draggable": "^4.4.6", - "lil-gui": "^0.19.2", - "vite-plugin-pwa": "^0.20.5", + "three": "^0.166.0", + "three-stdlib": "^2.29.5", "use-sound": "^4.0.1", - "@latticexyz/utils": "^2.0.0-next.12", - "@vercel/analytics": "^1.2.2", - "postprocessing": "^6.36.2", - "gsap": "^3.12.5", - "buffer": "^6.0.3" + "vite-plugin-pwa": "^0.20.5", + "wouter": "^2.12.1", + "zustand": "^4.5.2" }, "devDependencies": { + "@tailwindcss/typography": "^0.5.13", + "@types/lodash": "^4.14.202", "@types/three": "^0.163.0", "@typescript-eslint/eslint-plugin": "^7.5.0", "@vitest/coverage-v8": "^2.0.5", "@vitest/ui": "^2.0.1", - "eslint-config-standard-with-typescript": "^43.0.1", - "vitest": "^2.0.5", - "workbox-window": "^7.3.0", - "@types/lodash": "^4.14.202", - "@tailwindcss/typography": "^0.5.13" + "eslint-config-love": "^114.0.0", + "workbox-window": "^7.3.0" }, "peerDependencies": { "starknet": "6.11.0" diff --git a/client/apps/landing/package.json b/client/apps/landing/package.json index fd6835d33..127978537 100644 --- a/client/apps/landing/package.json +++ b/client/apps/landing/package.json @@ -1,17 +1,17 @@ { "name": "landing", - "private": true, "version": "0.0.0", + "private": true, "type": "module", "scripts": { + "build": "tsc --noEmit && vite build", + "build-storybook": "storybook build", + "codegen": "graphql-codegen --config codegen.ts", "dev": "vite", "dev::sepolia": "vite --mode sepolia", - "build": "tsc --noEmit && vite build", "lint": "eslint .", "preview": "vite preview", - "storybook": "storybook dev -p 6006", - "build-storybook": "storybook build", - "codegen": "graphql-codegen --config codegen.ts" + "storybook": "storybook dev -p 6006" }, "dependencies": { "@ark-project/core": "3.0.0-beta.1", @@ -23,7 +23,6 @@ "@radix-ui/react-collapsible": "^1.1.1", "@radix-ui/react-dialog": "^1.1.2", "@radix-ui/react-dropdown-menu": "^2.1.2", - "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.1.0", "@radix-ui/react-popover": "^1.1.2", "@radix-ui/react-separator": "^1.1.0", @@ -31,16 +30,12 @@ "@radix-ui/react-tooltip": "^1.1.3", "@tanstack/react-query": "^5.59.15", "@tanstack/react-router": "^1.74.0", - "class-variance-authority": "^0.7.0", "cmdk": "1.0.0", - "dotenv": "^16.3.1", "graphql": "^16.9.0", "graphql-tag": "^2.12.6", "jotai": "^2.10.1", "nuqs": "^2.0.4", - "starknet": "^6.8.0", "storybook": "^8.3.2", - "tailwindcss-animate": "^1.0.7", "vite-plugin-vercel": "^9.0.3" }, "devDependencies": { @@ -60,11 +55,6 @@ "@storybook/react-vite": "^8.3.2", "@storybook/test": "^8.3.2", "@tanstack/router-devtools": "^1.74.0", - "@tanstack/router-plugin": "^1.73.1", - "vite": "^5.4.8", - "vite-plugin-mkcert": "^1.17.6", - "vite-plugin-svgr": "^4.2.0", - "vite-plugin-top-level-await": "^1.4.1" - + "@tanstack/router-plugin": "^1.73.1" } } diff --git a/client/config/package.json b/client/config/package.json index 6f80896da..43beb452f 100644 --- a/client/config/package.json +++ b/client/config/package.json @@ -7,12 +7,10 @@ "lint:fix": "eslint . --fix" }, "devDependencies": { - "@types/bun": "latest", - "eslint": "^9.9.0" + "@types/bun": "latest" }, "peerDependencies": { - "typescript": "^5.0.0", - "@dojoengine/core": "1.0.0-alpha.21", - "starknet": "6.11.0" + "starknet": "6.11.0", + "typescript": "^5.0.0" } } diff --git a/client/package.json b/client/package.json index 6f6267c9f..2ccd47f81 100644 --- a/client/package.json +++ b/client/package.json @@ -3,24 +3,23 @@ "version": "0.1.0", "type": "module", "scripts": { - "dev": "pnpm --dir ./apps/game dev", - "dev:landing": "pnpm --dir ./apps/landing dev", - "dev:docs": "cd ./apps/docs && vocs dev", "build": "pnpm --dir ./apps/game build", - "build:landing": "pnpm --dir ./apps/landing build", "build:docs": "pnpm --dir ./apps/docs build", + "build:landing": "pnpm --dir ./apps/landing build", "build:packages": "pnpm --dir ./sdk/packages/eternum build", - "test:client": "pnpm --dir ./apps/game test", - "lint": "pnpm --dir ./apps/game lint", - "lint:fix": "pnpm --dir ./apps/game lint:fix", + "dev": "pnpm --dir ./apps/game dev", + "dev:docs": "cd ./apps/docs && vocs dev", + "dev:landing": "pnpm --dir ./apps/landing dev", "format": "prettier --write .", "format:check": "prettier --check .", - "knip": "npx knip --exclude binaries,dependencies" + "knip": "npx knip --exclude binaries,dependencies", + "lint": "pnpm --dir ./apps/game lint", + "lint:fix": "pnpm --dir ./apps/game lint:fix", + "test:client": "pnpm --dir ./apps/game test" }, "dependencies": { "@cartridge/connector": "^0.5.7", "@cartridge/controller": "^0.5.7", - "@dojoengine/core": "1.0.4-alpha.3.1.0", "@dojoengine/create-burner": "1.0.4-alpha.3.1.0", "@dojoengine/react": "1.0.4-alpha.3.1.0", "@dojoengine/recs": "^2.0.13", @@ -28,37 +27,37 @@ "@dojoengine/torii-client": "1.0.4-alpha.3.1.0", "@dojoengine/torii-wasm": "1.0.4-alpha.3.1.0", "@dojoengine/utils": "1.0.4-alpha.3.1.0", - "react": "^18.3.1", - "react-dom": "^18.3.1", - "lucide-react": "^0.365.0", - "clsx": "^1.2.1", - "sonner": "^1.7.0", - "viem": "^2.21.45", - "framer-motion": "^11.0.24", - "@starknet-react/core": "^3.5.0", "@headlessui/react": "^2.2.0", + "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-select": "^2.0.0", "@radix-ui/react-switch": "^1.1.1", "@radix-ui/react-tabs": "^1.1.0", + "@starknet-react/chains": "^3.1.0", + "@starknet-react/core": "^3.5.0", + "class-variance-authority": "^0.7.0", + "clsx": "^1.2.1", + "framer-motion": "^11.0.24", + "lucide-react": "^0.365.0", "next-themes": "^0.4.3", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "sonner": "^1.7.0", "tailwind-merge": "^2.5.2", - "@starknet-react/chains": "^3.1.0", + "tailwindcss-animate": "^1.0.7", + "viem": "^2.21.45", "zod": "^3.23.8" }, "devDependencies": { + "@svgr/rollup": "^8.1.0", "@types/node": "^20.11.10", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", - "eslint": "^9.9.0", - "typescript": "^5.5.3", - "leva": "^0.9.35", - "vite-plugin-svgr": "^4.2.0", - "@svgr/rollup": "^8.1.0", "@vitejs/plugin-react": "^4.3.1", + "globals": "^15.9.0", + "leva": "^0.9.35", "vite-plugin-mkcert": "^1.17.6", + "vite-plugin-svgr": "^4.2.0", "vite-plugin-top-level-await": "^1.4.1", - "vite-plugin-wasm": "^3.3.0", - "autoprefixer": "^10.4.18", - "globals": "^15.9.0" + "vite-plugin-wasm": "^3.3.0" } } diff --git a/contracts/package.json b/contracts/package.json deleted file mode 100644 index 0c4ebbde1..000000000 --- a/contracts/package.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "scripts", - "version": "1.0.0", - "type": "module", - "description": "", - "main": "index.js", - "author": "", - "license": "ISC", - "dependencies": { - "colors": "^1.4.0", - "dotenv": "^16.3.1", - "starknet": "^6.8.0" - } -} diff --git a/contracts/season_resources/scripts/deployment/package.json b/contracts/season_resources/scripts/deployment/package.json index 715888ea0..fc0b11c28 100644 --- a/contracts/season_resources/scripts/deployment/package.json +++ b/contracts/season_resources/scripts/deployment/package.json @@ -10,10 +10,5 @@ "deploy::mainnet": "source .env.mainnet && bun --env-file=.env.mainnet ./deploy && bun --env-file=.env.mainnet ./config/index.ts" }, "author": "", - "license": "ISC", - "dependencies": { - "@dojoengine/core": "1.0.0-alpha.24", - "eventemitter3": "^5.0.1", - "vitest": "^2.0.5" - } + "license": "ISC" } diff --git a/package.json b/package.json index f9db121c8..de7d966bd 100644 --- a/package.json +++ b/package.json @@ -3,34 +3,41 @@ "version": "0.1.0", "type": "module", "scripts": { - "dev": "pnpm --dir ./client/apps/game dev", - "dev:landing": "pnpm --dir ./client/apps/landing dev", - "dev:docs": "cd ./client/apps/docs && vocs dev", "build": "pnpm --dir ./client/apps/game build", - "build:landing": "pnpm --dir ./client/apps/landing build", "build:docs": "cd ./client/apps/docs && vocs build", + "build:landing": "pnpm --dir ./client/apps/landing build", "build:packages": "pnpm --dir ./client/sdk/packages/eternum build", - "lint": "pnpm --recursive run lint", - "lint:fix": "pnpm --recursive run lint:fix", + "clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name 'pnpm-lock.yaml' -type f -delete", + "dev": "pnpm --dir ./client/apps/game dev", + "dev:docs": "cd ./client/apps/docs && vocs dev", + "dev:landing": "pnpm --dir ./client/apps/landing dev", "format": "pnpm prettier --write .", "format:check": "pnpm prettier --check .", "knip": "npx knip --exclude binaries,dependencies", + "lint": "pnpm --recursive run lint", + "lint:fix": "pnpm --recursive run lint:fix", "test": "pnpm --recursive run test" }, "dependencies": { - "vocs": "latest", - "viem": "^2.21.45" + "colors": "^1.4.0", + "dotenv": "^16.3.1", + "eventemitter3": "^5.0.1", + "starknet": "^6.8.0", + "viem": "^2.21.45", + "vocs": "latest" }, "devDependencies": { + "@bibliothecadao/eternum": "workspace:^", + "@dojoengine/core": "1.0.4-alpha.3.1.0", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", - "eslint": "^9.x.x", + "autoprefixer": "^10.4.18", + "eslint": "^9.9.0", + "postcss": "^8.4.35", "prettier": "^3.x.x", "typescript": "^5.x.x", - "@bibliothecadao/eternum": "workspace:^", "vite": "^5.x.x", - "autoprefixer": "^10.4.18", - "postcss": "^8.4.35" + "vitest": "^2.0.5" }, "packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bf1fdd8bc..bccf25433 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,16 +8,31 @@ importers: .: dependencies: + colors: + specifier: ^1.4.0 + version: 1.4.0 + dotenv: + specifier: ^16.3.1 + version: 16.4.7 + eventemitter3: + specifier: ^5.0.1 + version: 5.0.1 + starknet: + specifier: ^6.8.0 + version: 6.11.0(encoding@0.1.13) viem: specifier: ^2.21.45 version: 2.22.3(typescript@5.7.2)(zod@3.24.1) vocs: specifier: latest - version: 1.0.0-alpha.62(@types/node@20.17.12)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.0)(terser@5.37.0)(typescript@5.7.2) + version: 1.0.0-alpha.62(@types/node@20.17.12)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(terser@5.37.0)(typescript@5.7.2) devDependencies: '@bibliothecadao/eternum': specifier: workspace:^ version: link:client/sdk/packages/eternum + '@dojoengine/core': + specifier: 1.0.4-alpha.3.1.0 + version: 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) '@types/react': specifier: ^18.3.12 version: 18.3.18 @@ -28,7 +43,7 @@ importers: specifier: ^10.4.18 version: 10.4.20(postcss@8.4.49) eslint: - specifier: ^9.x.x + specifier: ^9.9.0 version: 9.17.0(jiti@2.4.2) postcss: specifier: ^8.4.35 @@ -42,6 +57,9 @@ importers: vite: specifier: ^5.x.x version: 5.4.11(@types/node@20.17.12)(terser@5.37.0) + vitest: + specifier: ^2.0.5 + version: 2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0) client: dependencies: @@ -51,21 +69,18 @@ importers: '@cartridge/controller': specifier: ^0.5.7 version: 0.5.7(encoding@0.1.13) - '@dojoengine/core': - specifier: 1.0.4-alpha.3.1.0 - version: 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) '@dojoengine/create-burner': specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) '@dojoengine/react': specifier: 1.0.4-alpha.3.1.0 - version: 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1) + version: 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(@vitest/ui@2.1.8(vitest@2.1.8))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1) '@dojoengine/recs': specifier: ^2.0.13 version: 2.0.13(typescript@5.7.2)(zod@3.24.1) '@dojoengine/state': specifier: 1.0.4-alpha.3.1.0 - version: 1.0.4-alpha.3.1.0(@types/node@20.17.12)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) + version: 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) '@dojoengine/torii-client': specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0 @@ -78,6 +93,9 @@ importers: '@headlessui/react': specifier: ^2.2.0 version: 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-icons': + specifier: ^1.3.0 + version: 1.3.2(react@18.3.1) '@radix-ui/react-select': specifier: ^2.0.0 version: 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -93,6 +111,9 @@ importers: '@starknet-react/core': specifier: ^3.5.0 version: 3.6.3(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) + class-variance-authority: + specifier: ^0.7.0 + version: 0.7.1 clsx: specifier: ^1.2.1 version: 1.2.1 @@ -117,6 +138,9 @@ importers: tailwind-merge: specifier: ^2.5.2 version: 2.6.0 + tailwindcss-animate: + specifier: ^1.0.7 + version: 1.0.7 viem: specifier: ^2.21.45 version: 2.22.3(typescript@5.7.2)(zod@3.24.1) @@ -126,7 +150,7 @@ importers: devDependencies: '@svgr/rollup': specifier: ^8.1.0 - version: 8.1.0(rollup@4.30.0)(typescript@5.7.2) + version: 8.1.0(rollup@4.30.1)(typescript@5.7.2) '@types/node': specifier: ^20.11.10 version: 20.17.12 @@ -138,68 +162,41 @@ importers: version: 18.3.5(@types/react@18.3.18) '@vitejs/plugin-react': specifier: ^4.3.1 - version: 4.3.4(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) - autoprefixer: - specifier: ^10.4.18 - version: 10.4.20(postcss@8.4.49) - eslint: - specifier: ^9.9.0 - version: 9.17.0(jiti@2.4.2) + version: 4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) globals: specifier: ^15.9.0 version: 15.14.0 leva: specifier: ^0.9.35 version: 0.9.35(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - typescript: - specifier: ^5.5.3 - version: 5.7.2 vite-plugin-mkcert: specifier: ^1.17.6 - version: 1.17.6(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) + version: 1.17.6(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) vite-plugin-svgr: specifier: ^4.2.0 - version: 4.3.0(rollup@4.30.0)(typescript@5.7.2)(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) + version: 4.3.0(rollup@4.30.1)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) vite-plugin-top-level-await: specifier: ^1.4.1 - version: 1.4.4(@swc/helpers@0.5.15)(rollup@4.30.0)(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) + version: 1.4.4(@swc/helpers@0.5.15)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) vite-plugin-wasm: specifier: ^3.3.0 - version: 3.4.1(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) + version: 3.4.1(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) client/apps/balancing: dependencies: - '@radix-ui/react-icons': - specifier: ^1.3.0 - version: 1.3.2(react@18.3.1) '@tanstack/react-table': specifier: ^8.20.5 version: 8.20.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - class-variance-authority: - specifier: ^0.7.0 - version: 0.7.1 - tailwindcss-animate: - specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.17) devDependencies: '@eslint/js': specifier: ^9.9.0 version: 9.17.0 - autoprefixer: - specifier: ^10.4.18 - version: 10.4.20(postcss@8.4.49) eslint-plugin-react-hooks: specifier: ^5.1.0-rc.0 version: 5.1.0(eslint@9.17.0(jiti@2.4.2)) eslint-plugin-react-refresh: specifier: ^0.4.9 version: 0.4.16(eslint@9.17.0(jiti@2.4.2)) - globals: - specifier: ^15.9.0 - version: 15.14.0 - postcss: - specifier: ^8.4.35 - version: 8.4.49 tailwindcss: specifier: ^3.4.1 version: 3.4.17 @@ -284,12 +281,9 @@ importers: '@vitest/ui': specifier: ^2.0.1 version: 2.1.8(vitest@2.1.8) - eslint-config-standard-with-typescript: - specifier: ^43.0.1 - version: 43.0.1(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-n@16.6.2(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-promise@6.6.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - vitest: - specifier: ^2.0.5 - version: 2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0) + eslint-config-love: + specifier: ^114.0.0 + version: 114.0.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) workbox-window: specifier: ^7.3.0 version: 7.3.0 @@ -323,9 +317,6 @@ importers: '@radix-ui/react-dropdown-menu': specifier: ^2.1.2 version: 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-icons': - specifier: ^1.3.0 - version: 1.3.2(react@18.3.1) '@radix-ui/react-label': specifier: ^2.1.0 version: 2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -347,15 +338,9 @@ importers: '@tanstack/react-router': specifier: ^1.74.0 version: 1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - class-variance-authority: - specifier: ^0.7.0 - version: 0.7.1 cmdk: specifier: 1.0.0 version: 1.0.0(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - dotenv: - specifier: ^16.3.1 - version: 16.4.7 graphql: specifier: ^16.9.0 version: 16.10.0 @@ -368,18 +353,12 @@ importers: nuqs: specifier: ^2.0.4 version: 2.3.0(react-router-dom@6.28.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) - starknet: - specifier: ^6.8.0 - version: 6.11.0(encoding@0.1.13) storybook: specifier: ^8.3.2 version: 8.4.7(prettier@3.4.2) - tailwindcss-animate: - specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.17) vite-plugin-vercel: specifier: ^9.0.3 - version: 9.0.4(encoding@0.1.13)(rollup@4.30.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + version: 9.0.4(encoding@0.1.13)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) devDependencies: '@0no-co/graphqlsp': specifier: ^1.12.16 @@ -422,7 +401,7 @@ importers: version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2) '@storybook/react-vite': specifier: ^8.3.2 - version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.0)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) '@storybook/test': specifier: ^8.3.2 version: 8.4.7(storybook@8.4.7(prettier@3.4.2)) @@ -432,24 +411,9 @@ importers: '@tanstack/router-plugin': specifier: ^1.73.1 version: 1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - vite: - specifier: ^5.4.8 - version: 5.4.11(@types/node@20.17.12)(terser@5.37.0) - vite-plugin-mkcert: - specifier: ^1.17.6 - version: 1.17.6(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - vite-plugin-svgr: - specifier: ^4.2.0 - version: 4.3.0(rollup@4.30.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - vite-plugin-top-level-await: - specifier: ^1.4.1 - version: 1.4.4(@swc/helpers@0.5.15)(rollup@4.30.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) client/config: dependencies: - '@dojoengine/core': - specifier: 1.0.0-alpha.21 - version: 1.0.0-alpha.21(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) starknet: specifier: 6.11.0 version: 6.11.0(encoding@0.1.13) @@ -460,9 +424,6 @@ importers: '@types/bun': specifier: latest version: 1.1.15 - eslint: - specifier: ^9.9.0 - version: 9.17.0(jiti@2.4.2) client/sdk/packages/eternum: dependencies: @@ -498,31 +459,9 @@ importers: specifier: ^2.0.5 version: 2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0) - contracts: - dependencies: - colors: - specifier: ^1.4.0 - version: 1.4.0 - dotenv: - specifier: ^16.3.1 - version: 16.4.7 - starknet: - specifier: ^6.8.0 - version: 6.11.0(encoding@0.1.13) - contracts/season_pass/scripts/deployment: {} - contracts/season_resources/scripts/deployment: - dependencies: - '@dojoengine/core': - specifier: 1.0.0-alpha.24 - version: 1.0.0-alpha.24(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) - eventemitter3: - specifier: ^5.0.1 - version: 5.0.1 - vitest: - specifier: ^2.0.5 - version: 2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0) + contracts/season_resources/scripts/deployment: {} packages: @@ -1238,12 +1177,6 @@ packages: bundledDependencies: - is-unicode-supported - '@dojoengine/core@1.0.0-alpha.21': - resolution: {integrity: sha512-qTBz1m5aG/m3P7ST+NcU2KeAH5+hWioxYijcmo1c3PuCMsYVoyy+INbMvpOZs8I/eeGIDDWXonN4jVswwn0GVQ==} - hasBin: true - peerDependencies: - starknet: 6.11.0 - '@dojoengine/core@1.0.0-alpha.24': resolution: {integrity: sha512-ABxUtqQOsrTm8HYvR8pICfQ+MX99ZRSW1QkOyjRy4PbB+8A9heq2bMBqVrFhgMYFdEti9Z8aXNbt+uJ985SSqg==} hasBin: true @@ -1904,11 +1837,11 @@ packages: resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@floating-ui/core@1.6.8': - resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} + '@floating-ui/core@1.6.9': + resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==} - '@floating-ui/dom@1.6.12': - resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==} + '@floating-ui/dom@1.6.13': + resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==} '@floating-ui/react-dom@2.1.2': resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} @@ -1922,8 +1855,8 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/utils@0.2.8': - resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} + '@floating-ui/utils@0.2.9': + resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} '@gql.tada/internal@1.0.8': resolution: {integrity: sha512-XYdxJhtHC5WtZfdDqtKjcQ4d7R1s0d1rnlSs3OcBEUbYiPoJJfZU7tWsVXuv047Z6msvmr4ompJ7eLSK5Km57g==} @@ -3240,98 +3173,98 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.30.0': - resolution: {integrity: sha512-qFcFto9figFLz2g25DxJ1WWL9+c91fTxnGuwhToCl8BaqDsDYMl/kOnBXAyAqkkzAWimYMSWNPWEjt+ADAHuoQ==} + '@rollup/rollup-android-arm-eabi@4.30.1': + resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.30.0': - resolution: {integrity: sha512-vqrQdusvVl7dthqNjWCL043qelBK+gv9v3ZiqdxgaJvmZyIAAXMjeGVSqZynKq69T7062T5VrVTuikKSAAVP6A==} + '@rollup/rollup-android-arm64@4.30.1': + resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.30.0': - resolution: {integrity: sha512-617pd92LhdA9+wpixnzsyhVft3szYiN16aNUMzVkf2N+yAk8UXY226Bfp36LvxYTUt7MO/ycqGFjQgJ0wlMaWQ==} + '@rollup/rollup-darwin-arm64@4.30.1': + resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.30.0': - resolution: {integrity: sha512-Y3b4oDoaEhCypg8ajPqigKDcpi5ZZovemQl9Edpem0uNv6UUjXv7iySBpGIUTSs2ovWOzYpfw9EbFJXF/fJHWw==} + '@rollup/rollup-darwin-x64@4.30.1': + resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.30.0': - resolution: {integrity: sha512-3REQJ4f90sFIBfa0BUokiCdrV/E4uIjhkWe1bMgCkhFXbf4D8YN6C4zwJL881GM818qVYE9BO3dGwjKhpo2ABA==} + '@rollup/rollup-freebsd-arm64@4.30.1': + resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.30.0': - resolution: {integrity: sha512-ZtY3Y8icbe3Cc+uQicsXG5L+CRGUfLZjW6j2gn5ikpltt3Whqjfo5mkyZ86UiuHF9Q3ZsaQeW7YswlHnN+lAcg==} + '@rollup/rollup-freebsd-x64@4.30.1': + resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.30.0': - resolution: {integrity: sha512-bsPGGzfiHXMhQGuFGpmo2PyTwcrh2otL6ycSZAFTESviUoBOuxF7iBbAL5IJXc/69peXl5rAtbewBFeASZ9O0g==} + '@rollup/rollup-linux-arm-gnueabihf@4.30.1': + resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.30.0': - resolution: {integrity: sha512-kvyIECEhs2DrrdfQf++maCWJIQ974EI4txlz1nNSBaCdtf7i5Xf1AQCEJWOC5rEBisdaMFFnOWNLYt7KpFqy5A==} + '@rollup/rollup-linux-arm-musleabihf@4.30.1': + resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.30.0': - resolution: {integrity: sha512-CFE7zDNrokaotXu+shwIrmWrFxllg79vciH4E/zeK7NitVuWEaXRzS0mFfFvyhZfn8WfVOG/1E9u8/DFEgK7WQ==} + '@rollup/rollup-linux-arm64-gnu@4.30.1': + resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.30.0': - resolution: {integrity: sha512-MctNTBlvMcIBP0t8lV/NXiUwFg9oK5F79CxLU+a3xgrdJjfBLVIEHSAjQ9+ipofN2GKaMLnFFXLltg1HEEPaGQ==} + '@rollup/rollup-linux-arm64-musl@4.30.1': + resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.30.0': - resolution: {integrity: sha512-fBpoYwLEPivL3q368+gwn4qnYnr7GVwM6NnMo8rJ4wb0p/Y5lg88vQRRP077gf+tc25akuqd+1Sxbn9meODhwA==} + '@rollup/rollup-linux-loongarch64-gnu@4.30.1': + resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.30.0': - resolution: {integrity: sha512-1hiHPV6dUaqIMXrIjN+vgJqtfkLpqHS1Xsg0oUfUVD98xGp1wX89PIXgDF2DWra1nxAd8dfE0Dk59MyeKaBVAw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': + resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.30.0': - resolution: {integrity: sha512-U0xcC80SMpEbvvLw92emHrNjlS3OXjAM0aVzlWfar6PR0ODWCTQtKeeB+tlAPGfZQXicv1SpWwRz9Hyzq3Jx3g==} + '@rollup/rollup-linux-riscv64-gnu@4.30.1': + resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.30.0': - resolution: {integrity: sha512-VU/P/IODrNPasgZDLIFJmMiLGez+BN11DQWfTVlViJVabyF3JaeaJkP6teI8760f18BMGCQOW9gOmuzFaI1pUw==} + '@rollup/rollup-linux-s390x-gnu@4.30.1': + resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.30.0': - resolution: {integrity: sha512-laQVRvdbKmjXuFA3ZiZj7+U24FcmoPlXEi2OyLfbpY2MW1oxLt9Au8q9eHd0x6Pw/Kw4oe9gwVXWwIf2PVqblg==} + '@rollup/rollup-linux-x64-gnu@4.30.1': + resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.30.0': - resolution: {integrity: sha512-3wzKzduS7jzxqcOvy/ocU/gMR3/QrHEFLge5CD7Si9fyHuoXcidyYZ6jyx8OPYmCcGm3uKTUl+9jUSAY74Ln5A==} + '@rollup/rollup-linux-x64-musl@4.30.1': + resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.30.0': - resolution: {integrity: sha512-jROwnI1+wPyuv696rAFHp5+6RFhXGGwgmgSfzE8e4xfit6oLRg7GyMArVUoM3ChS045OwWr9aTnU+2c1UdBMyw==} + '@rollup/rollup-win32-arm64-msvc@4.30.1': + resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.30.0': - resolution: {integrity: sha512-duzweyup5WELhcXx5H1jokpr13i3BV9b48FMiikYAwk/MT1LrMYYk2TzenBd0jj4ivQIt58JWSxc19y4SvLP4g==} + '@rollup/rollup-win32-ia32-msvc@4.30.1': + resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.30.0': - resolution: {integrity: sha512-DYvxS0M07PvgvavMIybCOBYheyrqlui6ZQBHJs6GqduVzHSZ06TPPvlfvnYstjODHQ8UUXFwt5YE+h0jFI8kwg==} + '@rollup/rollup-win32-x64-msvc@4.30.1': + resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} cpu: [x64] os: [win32] @@ -4035,16 +3968,6 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/parser@6.21.0': - resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@typescript-eslint/parser@8.19.1': resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4052,10 +3975,6 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/scope-manager@6.21.0': - resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@7.18.0': resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -4081,10 +4000,6 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/types@6.21.0': - resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@7.18.0': resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} @@ -4093,15 +4008,6 @@ packages: resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@6.21.0': - resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@typescript-eslint/typescript-estree@7.18.0': resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -4130,10 +4036,6 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/visitor-keys@6.21.0': - resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/visitor-keys@7.18.0': resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} @@ -4615,13 +4517,6 @@ packages: buffer@6.0.3: resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - - builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} - bun-types@1.1.42: resolution: {integrity: sha512-beMbnFqWbbBQHll/bn3phSwmoOQmnX2nt8NI9iOQKFbgR5Z6rlH3YuaMdlid8vp5XGct3/W4QVQBmhoOEoe4nw==} @@ -5205,6 +5100,10 @@ packages: encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + enhanced-resolve@5.18.0: + resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} + engines: {node: '>=10.13.0'} + entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -5301,26 +5200,12 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-config-standard-with-typescript@43.0.1: - resolution: {integrity: sha512-WfZ986+qzIzX6dcr4yGUyVb/l9N3Z8wPXCc5z/70fljs3UbWhhV+WxrfgsqMToRzuuyX9MqZ974pq2UPhDTOcA==} - deprecated: Please use eslint-config-love, instead. + eslint-config-love@114.0.0: + resolution: {integrity: sha512-PScXVLQge1nucu1GZUGmYaGNZrSlI4d09W4a16GtZA2Ht/Hx2V3f7znBRiAFzqJ4yAcWuDAmXiyrbMmNYEeslA==} peerDependencies: - '@typescript-eslint/eslint-plugin': ^6.4.0 - eslint: ^8.0.1 - eslint-plugin-import: ^2.25.2 - eslint-plugin-n: '^15.0.0 || ^16.0.0 ' - eslint-plugin-promise: ^6.0.0 + eslint: ^9.12.0 typescript: '*' - eslint-config-standard@17.1.0: - resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: ^8.0.1 - eslint-plugin-import: ^2.25.2 - eslint-plugin-n: '^15.0.0 || ^16.0.0 ' - eslint-plugin-promise: ^6.0.0 - eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} @@ -5351,6 +5236,12 @@ packages: peerDependencies: eslint: '>=8' + eslint-plugin-eslint-comments@3.2.0: + resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} + engines: {node: '>=6.5.0'} + peerDependencies: + eslint: '>=4.19.1' + eslint-plugin-import@2.31.0: resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} engines: {node: '>=4'} @@ -5361,15 +5252,15 @@ packages: '@typescript-eslint/parser': optional: true - eslint-plugin-n@16.6.2: - resolution: {integrity: sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==} - engines: {node: '>=16.0.0'} + eslint-plugin-n@17.15.1: + resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: '>=7.0.0' + eslint: '>=8.23.0' - eslint-plugin-promise@6.6.0: - resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-plugin-promise@7.2.1: + resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -5760,10 +5651,6 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} - globals@14.0.0: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} @@ -6040,10 +5927,6 @@ packages: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} engines: {node: '>=4'} - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -6752,6 +6635,10 @@ packages: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} + mime-db@1.53.0: + resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==} + engines: {node: '>= 0.6'} + mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} @@ -6780,10 +6667,6 @@ packages: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} - minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} - minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} @@ -7625,8 +7508,8 @@ packages: engines: {node: '>=10.0.0'} hasBin: true - rollup@4.30.0: - resolution: {integrity: sha512-sDnr1pcjTgUT69qBksNF1N1anwfbyYG6TBQ22b03bII8EdiUQ7J0TlozVaTMjT/eEJAO49e1ndV7t+UZfL1+vA==} + rollup@4.30.1: + resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -7998,6 +7881,10 @@ packages: engines: {node: '>=14.0.0'} hasBin: true + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + tar@7.4.3: resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} engines: {node: '>=18'} @@ -8213,10 +8100,6 @@ packages: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} engines: {node: '>=10'} - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} @@ -8555,46 +8438,6 @@ packages: terser: optional: true - vite@6.0.7: - resolution: {integrity: sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: '>=1.21.0' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - vitest@1.6.0: resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -9806,16 +9649,6 @@ snapshots: picocolors: 1.1.1 sisteransi: 1.0.5 - '@dojoengine/core@1.0.0-alpha.21(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)': - dependencies: - '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) - starknet: 6.11.0(encoding@0.1.13) - zod: 3.24.1 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - '@dojoengine/core@1.0.0-alpha.24(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)': dependencies: '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) @@ -9852,10 +9685,10 @@ snapshots: - typescript - utf-8-validate - '@dojoengine/react@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1)': + '@dojoengine/react@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(@vitest/ui@2.1.8(vitest@2.1.8))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1)': dependencies: '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/state': 1.0.4-alpha.3.1.0(@types/node@20.17.12)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) + '@dojoengine/state': 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) '@dojoengine/torii-client': 1.0.4-alpha.3.1.0 '@dojoengine/utils': 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)(zod@3.24.1) '@latticexyz/utils': 2.2.14 @@ -9902,12 +9735,12 @@ snapshots: - utf-8-validate - zod - '@dojoengine/state@1.0.4-alpha.3.1.0(@types/node@20.17.12)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1)': + '@dojoengine/state@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1)': dependencies: '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) '@dojoengine/torii-client': 1.0.4-alpha.3.1.0 starknet: 6.11.0(encoding@0.1.13) - vitest: 1.6.0(@types/node@20.17.12)(terser@5.37.0) + vitest: 1.6.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(terser@5.37.0) transitivePeerDependencies: - '@edge-runtime/vm' - '@types/node' @@ -10284,30 +10117,30 @@ snapshots: dependencies: levn: 0.4.1 - '@floating-ui/core@1.6.8': + '@floating-ui/core@1.6.9': dependencies: - '@floating-ui/utils': 0.2.8 + '@floating-ui/utils': 0.2.9 - '@floating-ui/dom@1.6.12': + '@floating-ui/dom@1.6.13': dependencies: - '@floating-ui/core': 1.6.8 - '@floating-ui/utils': 0.2.8 + '@floating-ui/core': 1.6.9 + '@floating-ui/utils': 0.2.9 '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/dom': 1.6.12 + '@floating-ui/dom': 1.6.13 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) '@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@floating-ui/utils': 0.2.8 + '@floating-ui/utils': 0.2.9 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tabbable: 6.2.0 - '@floating-ui/utils@0.2.8': {} + '@floating-ui/utils@0.2.9': {} '@gql.tada/internal@1.0.8(graphql@16.10.0)(typescript@5.7.2)': dependencies: @@ -11019,11 +10852,11 @@ snapshots: '@types/react': 18.3.18 react: 18.3.1 - '@mdx-js/rollup@3.1.0(acorn@8.14.0)(rollup@4.30.0)': + '@mdx-js/rollup@3.1.0(acorn@8.14.0)(rollup@4.30.1)': dependencies: '@mdx-js/mdx': 3.1.0(acorn@8.14.0) - '@rollup/pluginutils': 5.1.4(rollup@4.30.0) - rollup: 4.30.0 + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) + rollup: 4.30.1 source-map: 0.7.4 vfile: 6.0.3 transitivePeerDependencies: @@ -11913,9 +11746,9 @@ snapshots: optionalDependencies: rollup: 2.79.2 - '@rollup/plugin-virtual@3.0.2(rollup@4.30.0)': + '@rollup/plugin-virtual@3.0.2(rollup@4.30.1)': optionalDependencies: - rollup: 4.30.0 + rollup: 4.30.1 '@rollup/pluginutils@3.1.0(rollup@2.79.2)': dependencies: @@ -11932,69 +11765,69 @@ snapshots: optionalDependencies: rollup: 2.79.2 - '@rollup/pluginutils@5.1.4(rollup@4.30.0)': + '@rollup/pluginutils@5.1.4(rollup@4.30.1)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.30.0 + rollup: 4.30.1 - '@rollup/rollup-android-arm-eabi@4.30.0': + '@rollup/rollup-android-arm-eabi@4.30.1': optional: true - '@rollup/rollup-android-arm64@4.30.0': + '@rollup/rollup-android-arm64@4.30.1': optional: true - '@rollup/rollup-darwin-arm64@4.30.0': + '@rollup/rollup-darwin-arm64@4.30.1': optional: true - '@rollup/rollup-darwin-x64@4.30.0': + '@rollup/rollup-darwin-x64@4.30.1': optional: true - '@rollup/rollup-freebsd-arm64@4.30.0': + '@rollup/rollup-freebsd-arm64@4.30.1': optional: true - '@rollup/rollup-freebsd-x64@4.30.0': + '@rollup/rollup-freebsd-x64@4.30.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.30.0': + '@rollup/rollup-linux-arm-gnueabihf@4.30.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.30.0': + '@rollup/rollup-linux-arm-musleabihf@4.30.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.30.0': + '@rollup/rollup-linux-arm64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.30.0': + '@rollup/rollup-linux-arm64-musl@4.30.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.30.0': + '@rollup/rollup-linux-loongarch64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.30.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.30.0': + '@rollup/rollup-linux-riscv64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.30.0': + '@rollup/rollup-linux-s390x-gnu@4.30.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.30.0': + '@rollup/rollup-linux-x64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-x64-musl@4.30.0': + '@rollup/rollup-linux-x64-musl@4.30.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.30.0': + '@rollup/rollup-win32-arm64-msvc@4.30.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.30.0': + '@rollup/rollup-win32-ia32-msvc@4.30.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.30.0': + '@rollup/rollup-win32-x64-msvc@4.30.1': optional: true '@rtsao/scc@1.1.0': {} @@ -12337,10 +12170,10 @@ snapshots: react-dom: 18.3.1(react@18.3.1) storybook: 8.4.7(prettier@3.4.2) - '@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.0)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + '@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': dependencies: '@joshwooding/vite-plugin-react-docgen-typescript': 0.4.2(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@rollup/pluginutils': 5.1.4(rollup@4.30.0) + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) '@storybook/builder-vite': 8.4.7(storybook@8.4.7(prettier@3.4.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) '@storybook/react': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2) find-up: 5.0.0 @@ -12475,14 +12308,14 @@ snapshots: transitivePeerDependencies: - typescript - '@svgr/rollup@8.1.0(rollup@4.30.0)(typescript@5.7.2)': + '@svgr/rollup@8.1.0(rollup@4.30.1)(typescript@5.7.2)': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0) '@babel/preset-env': 7.26.0(@babel/core@7.26.0) '@babel/preset-react': 7.26.3(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) - '@rollup/pluginutils': 5.1.4(rollup@4.30.0) + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) '@svgr/core': 8.1.0(typescript@5.7.2) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2) @@ -12821,7 +12654,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 20.17.12 + '@types/node': 20.12.14 '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': dependencies: @@ -12858,19 +12691,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': - dependencies: - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.4.0 - eslint: 9.17.0(jiti@2.4.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': dependencies: '@typescript-eslint/scope-manager': 8.19.1 @@ -12883,11 +12703,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@6.21.0': - dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 - '@typescript-eslint/scope-manager@7.18.0': dependencies: '@typescript-eslint/types': 7.18.0 @@ -12921,27 +12736,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@6.21.0': {} - '@typescript-eslint/types@7.18.0': {} '@typescript-eslint/types@8.19.1': {} - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.7.2)': - dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.4.0 - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)': dependencies: '@typescript-eslint/types': 7.18.0 @@ -12993,11 +12791,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@6.21.0': - dependencies: - '@typescript-eslint/types': 6.21.0 - eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@7.18.0': dependencies: '@typescript-eslint/types': 7.18.0 @@ -13106,10 +12899,10 @@ snapshots: '@vercel/build-utils@8.8.0': {} - '@vercel/nft@0.27.10(encoding@0.1.13)(rollup@4.30.0)': + '@vercel/nft@0.27.10(encoding@0.1.13)(rollup@4.30.1)': dependencies: '@mapbox/node-pre-gyp': 2.0.0-rc.0(encoding@0.1.13) - '@rollup/pluginutils': 5.1.4(rollup@4.30.0) + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) acorn: 8.14.0 acorn-import-attributes: 1.9.5(acorn@8.14.0) async-sema: 3.1.1 @@ -13142,14 +12935,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.3.4(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))': + '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - supports-color @@ -13636,12 +13429,6 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} - - builtins@5.1.0: - dependencies: - semver: 7.6.3 - bun-types@1.1.42: dependencies: '@types/node': 20.12.14 @@ -13913,7 +13700,7 @@ snapshots: compressible@2.0.18: dependencies: - mime-db: 1.52.0 + mime-db: 1.53.0 compression@1.7.5: dependencies: @@ -14203,6 +13990,11 @@ snapshots: dependencies: iconv-lite: 0.6.3 + enhanced-resolve@5.18.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + entities@4.5.0: {} error-ex@1.3.2: @@ -14435,26 +14227,22 @@ snapshots: eslint: 9.17.0(jiti@2.4.2) semver: 7.6.3 - eslint-config-standard-with-typescript@43.0.1(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-n@16.6.2(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-promise@6.6.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): + eslint-config-love@114.0.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): dependencies: - '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/parser': 6.21.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) eslint: 9.17.0(jiti@2.4.2) - eslint-config-standard: 17.1.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-n@16.6.2(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-promise@6.6.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-eslint-comments: 3.2.0(eslint@9.17.0(jiti@2.4.2)) eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)) - eslint-plugin-n: 16.6.2(eslint@9.17.0(jiti@2.4.2)) - eslint-plugin-promise: 6.6.0(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-n: 17.15.1(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-promise: 7.2.1(eslint@9.17.0(jiti@2.4.2)) typescript: 5.7.2 + typescript-eslint: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack - supports-color - eslint-config-standard@17.1.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-n@16.6.2(eslint@9.17.0(jiti@2.4.2)))(eslint-plugin-promise@6.6.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2)): - dependencies: - eslint: 9.17.0(jiti@2.4.2) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)) - eslint-plugin-n: 16.6.2(eslint@9.17.0(jiti@2.4.2)) - eslint-plugin-promise: 6.6.0(eslint@9.17.0(jiti@2.4.2)) - eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 @@ -14480,6 +14268,12 @@ snapshots: eslint: 9.17.0(jiti@2.4.2) eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-eslint-comments@3.2.0(eslint@9.17.0(jiti@2.4.2)): + dependencies: + escape-string-regexp: 1.0.5 + eslint: 9.17.0(jiti@2.4.2) + ignore: 5.3.2 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)): dependencies: '@rtsao/scc': 1.1.0 @@ -14509,23 +14303,21 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-n@16.6.2(eslint@9.17.0(jiti@2.4.2)): + eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)): dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) - builtins: 5.1.0 + enhanced-resolve: 5.18.0 eslint: 9.17.0(jiti@2.4.2) eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2)) get-tsconfig: 4.8.1 - globals: 13.24.0 + globals: 15.14.0 ignore: 5.3.2 - is-builtin-module: 3.2.1 - is-core-module: 2.16.1 - minimatch: 3.1.2 - resolve: 1.22.10 + minimatch: 9.0.5 semver: 7.6.3 - eslint-plugin-promise@6.6.0(eslint@9.17.0(jiti@2.4.2)): + eslint-plugin-promise@7.2.1(eslint@9.17.0(jiti@2.4.2)): dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) eslint: 9.17.0(jiti@2.4.2) eslint-plugin-react-hooks@5.1.0(eslint@9.17.0(jiti@2.4.2)): @@ -14963,10 +14755,6 @@ snapshots: globals@11.12.0: {} - globals@13.24.0: - dependencies: - type-fest: 0.20.2 - globals@14.0.0: {} globals@15.14.0: {} @@ -15334,10 +15122,6 @@ snapshots: is-buffer@2.0.5: {} - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 - is-callable@1.2.7: {} is-core-module@2.16.1: @@ -16304,6 +16088,8 @@ snapshots: mime-db@1.52.0: {} + mime-db@1.53.0: {} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 @@ -16324,10 +16110,6 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.3: - dependencies: - brace-expansion: 2.0.1 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -17231,29 +17013,29 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - rollup@4.30.0: + rollup@4.30.1: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.30.0 - '@rollup/rollup-android-arm64': 4.30.0 - '@rollup/rollup-darwin-arm64': 4.30.0 - '@rollup/rollup-darwin-x64': 4.30.0 - '@rollup/rollup-freebsd-arm64': 4.30.0 - '@rollup/rollup-freebsd-x64': 4.30.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.30.0 - '@rollup/rollup-linux-arm-musleabihf': 4.30.0 - '@rollup/rollup-linux-arm64-gnu': 4.30.0 - '@rollup/rollup-linux-arm64-musl': 4.30.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.30.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.30.0 - '@rollup/rollup-linux-riscv64-gnu': 4.30.0 - '@rollup/rollup-linux-s390x-gnu': 4.30.0 - '@rollup/rollup-linux-x64-gnu': 4.30.0 - '@rollup/rollup-linux-x64-musl': 4.30.0 - '@rollup/rollup-win32-arm64-msvc': 4.30.0 - '@rollup/rollup-win32-ia32-msvc': 4.30.0 - '@rollup/rollup-win32-x64-msvc': 4.30.0 + '@rollup/rollup-android-arm-eabi': 4.30.1 + '@rollup/rollup-android-arm64': 4.30.1 + '@rollup/rollup-darwin-arm64': 4.30.1 + '@rollup/rollup-darwin-x64': 4.30.1 + '@rollup/rollup-freebsd-arm64': 4.30.1 + '@rollup/rollup-freebsd-x64': 4.30.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.30.1 + '@rollup/rollup-linux-arm-musleabihf': 4.30.1 + '@rollup/rollup-linux-arm64-gnu': 4.30.1 + '@rollup/rollup-linux-arm64-musl': 4.30.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.30.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 + '@rollup/rollup-linux-riscv64-gnu': 4.30.1 + '@rollup/rollup-linux-s390x-gnu': 4.30.1 + '@rollup/rollup-linux-x64-gnu': 4.30.1 + '@rollup/rollup-linux-x64-musl': 4.30.1 + '@rollup/rollup-win32-arm64-msvc': 4.30.1 + '@rollup/rollup-win32-ia32-msvc': 4.30.1 + '@rollup/rollup-win32-x64-msvc': 4.30.1 fsevents: 2.3.3 run-async@2.4.1: {} @@ -17389,7 +17171,7 @@ snapshots: shepherd.js@14.3.0: dependencies: - '@floating-ui/dom': 1.6.12 + '@floating-ui/dom': 1.6.13 '@scarf/scarf': 1.4.0 deepmerge-ts: 7.1.3 @@ -17691,9 +17473,7 @@ snapshots: tailwind-merge@2.6.0: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.17): - dependencies: - tailwindcss: 3.4.17 + tailwindcss-animate@1.0.7: {} tailwindcss@3.4.17: dependencies: @@ -17722,6 +17502,8 @@ snapshots: transitivePeerDependencies: - ts-node + tapable@2.2.1: {} + tar@7.4.3: dependencies: '@isaacs/fs-minipass': 4.0.1 @@ -17887,7 +17669,7 @@ snapshots: picocolors: 1.1.1 postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.7.0) resolve-from: 5.0.0 - rollup: 4.30.0 + rollup: 4.30.1 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyexec: 0.3.2 @@ -17930,8 +17712,6 @@ snapshots: type-fest@0.16.0: {} - type-fest@0.20.2: {} - type-fest@0.21.3: {} type-fest@2.19.0: {} @@ -18269,16 +18049,6 @@ snapshots: transitivePeerDependencies: - supports-color - vite-plugin-mkcert@1.17.6(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)): - dependencies: - '@octokit/rest': 20.1.1 - axios: 1.7.9(debug@4.4.0) - debug: 4.4.0 - picocolors: 1.1.1 - vite: 6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) - transitivePeerDependencies: - - supports-color - vite-plugin-pwa@0.20.5(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))(workbox-build@7.3.0(@types/babel__core@7.20.5))(workbox-window@7.3.0): dependencies: debug: 4.4.0 @@ -18290,9 +18060,9 @@ snapshots: transitivePeerDependencies: - supports-color - vite-plugin-svgr@4.3.0(rollup@4.30.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): + vite-plugin-svgr@4.3.0(rollup@4.30.1)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.30.0) + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) '@svgr/core': 8.1.0(typescript@5.7.2) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) @@ -18301,20 +18071,9 @@ snapshots: - supports-color - typescript - vite-plugin-svgr@4.3.0(rollup@4.30.0)(typescript@5.7.2)(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)): + vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.15)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.30.0) - '@svgr/core': 8.1.0(typescript@5.7.2) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) - vite: 6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) - transitivePeerDependencies: - - rollup - - supports-color - - typescript - - vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.15)(rollup@4.30.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): - dependencies: - '@rollup/plugin-virtual': 3.0.2(rollup@4.30.0) + '@rollup/plugin-virtual': 3.0.2(rollup@4.30.1) '@swc/core': 1.10.4(@swc/helpers@0.5.15) uuid: 10.0.0 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) @@ -18322,22 +18081,12 @@ snapshots: - '@swc/helpers' - rollup - vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.15)(rollup@4.30.0)(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)): - dependencies: - '@rollup/plugin-virtual': 3.0.2(rollup@4.30.0) - '@swc/core': 1.10.4(@swc/helpers@0.5.15) - uuid: 10.0.0 - vite: 6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) - transitivePeerDependencies: - - '@swc/helpers' - - rollup - - vite-plugin-vercel@9.0.4(encoding@0.1.13)(rollup@4.30.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): + vite-plugin-vercel@9.0.4(encoding@0.1.13)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: '@brillout/libassert': 0.5.8 '@manypkg/find-root': 2.2.3 '@vercel/build-utils': 8.8.0 - '@vercel/nft': 0.27.10(encoding@0.1.13)(rollup@4.30.0) + '@vercel/nft': 0.27.10(encoding@0.1.13)(rollup@4.30.1) '@vercel/routing-utils': 3.1.0 esbuild: 0.24.2 fast-glob: 3.3.3 @@ -18349,34 +18098,21 @@ snapshots: - rollup - supports-color - vite-plugin-wasm@3.4.1(vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)): + vite-plugin-wasm@3.4.1(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - vite: 6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) vite@5.4.11(@types/node@20.17.12)(terser@5.37.0): dependencies: esbuild: 0.21.5 postcss: 8.4.49 - rollup: 4.30.0 - optionalDependencies: - '@types/node': 20.17.12 - fsevents: 2.3.3 - terser: 5.37.0 - - vite@6.0.7(@types/node@20.17.12)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): - dependencies: - esbuild: 0.24.2 - postcss: 8.4.49 - rollup: 4.30.0 + rollup: 4.30.1 optionalDependencies: '@types/node': 20.17.12 fsevents: 2.3.3 - jiti: 2.4.2 terser: 5.37.0 - tsx: 4.19.2 - yaml: 2.7.0 - vitest@1.6.0(@types/node@20.17.12)(terser@5.37.0): + vitest@1.6.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(terser@5.37.0): dependencies: '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 @@ -18400,6 +18136,7 @@ snapshots: why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 20.17.12 + '@vitest/ui': 2.1.8(vitest@2.1.8) transitivePeerDependencies: - less - lightningcss @@ -18446,12 +18183,12 @@ snapshots: - supports-color - terser - vocs@1.0.0-alpha.62(@types/node@20.17.12)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.0)(terser@5.37.0)(typescript@5.7.2): + vocs@1.0.0-alpha.62(@types/node@20.17.12)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(terser@5.37.0)(typescript@5.7.2): dependencies: '@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@hono/node-server': 1.13.7(hono@3.12.12) '@mdx-js/react': 3.1.0(@types/react@18.3.18)(react@18.3.1) - '@mdx-js/rollup': 3.1.0(acorn@8.14.0)(rollup@4.30.0) + '@mdx-js/rollup': 3.1.0(acorn@8.14.0)(rollup@4.30.1) '@noble/hashes': 1.7.0 '@radix-ui/colors': 3.0.0 '@radix-ui/react-accordion': 1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 697fc6c4e..f2f696257 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,9 +1,7 @@ packages: - - "client/sdk/packages/*" - "client" - "client/apps/*" - "client/config" - - "client/balancing" - - "contracts" + - "client/sdk/packages/*" - "contracts/season_pass/scripts/deployment" - "contracts/season_resources/scripts/deployment"