chore(deps): bump dependencies

This commit is contained in:
Neko Ayaka
2025-10-03 16:54:50 +08:00
parent dee8ec8ced
commit 75321a4cd9
26 changed files with 2414 additions and 2258 deletions
+26 -166
View File
@@ -31,185 +31,45 @@ on:
- cron: '0 0 * * *'
jobs:
build-tamagotchi:
name: Build Tamagotchi
build:
name: Build
strategy:
matrix:
include:
- os: macos-13
artifact: darwin-x64
ext: dmg
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
# - os: ubuntu-latest
# target: x86_64-unknown-linux-gnu
# - os: ubuntu-24.04-arm
# target: aarch64-unknown-linux-gnu
artifact: darwin-arm64
ext: dmg
- os: ubuntu-latest
artifact: linux-x64
ext: AppImage
- os: ubuntu-24.04-arm
artifact: linux-arm64
ext: AppImage
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: windows-x64-setup
ext: exe
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
- uses: actions/setup-node@v5
with:
node-version: lts/*
cache: pnpm
# registry-url required. Learn more at
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
registry-url: https://registry.npmjs.org
# Why?
#
# failed to build archive at `/home/runner/work/airi/airi/target/x86_64-unknown-linux-gnu/release/deps/libapp_lib.rlib`:
# No space left on device (os error 28)
- name: Free Disk Space
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm'
uses: jlumbroso/free-disk-space@main
- name: Get Product Name (Windows Only)
if: matrix.os == 'windows-latest'
- run: pnpm install --frozen-lockfile
- name: Build
run: |
$productName = node -p 'require("./apps/stage-tamagotchi/src-tauri/tauri.conf.json").productName'
echo "PRODUCT_NAME=$productName" >> $env:GITHUB_ENV
- name: Get Product Name
if: matrix.os != 'windows-latest'
pnpm run -F @proj-airi/stage-tamagotchi build
- id: version
run: |
echo "PRODUCT_NAME=$(node -p 'require("./apps/stage-tamagotchi/src-tauri/tauri.conf.json").productName')" >> $GITHUB_ENV
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install system dependencies (Ubuntu Only)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm'
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
libssl-dev \
libgtk-3-dev \
librsvg2-dev \
libsoup-3.0-dev \
libgdk-pixbuf2.0-dev \
libwebkit2gtk-4.1-dev \
libappindicator3-dev \
librsvg2-dev \
patchelf
- name: Install system dependencies (macOS Only)
if: matrix.os == 'macos-latest'
run: |
brew install \
pkg-config \
glib
- name: Setup MSVC (Windows Only)
if: matrix.os == 'windows-latest'
uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build Dependencies
run: pnpm run build:packages
- name: Build Application (macOS Only)
if: matrix.os == 'macos-latest'
run: pnpm run build:tamagotchi --target ${{ matrix.target }}
- name: Build Application (Linux and Windows Only)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' || matrix.os == 'windows-latest'
run: pnpm run build:tamagotchi --target ${{ matrix.target }} --verbose
env:
RUST_BACKTRACE: '1'
# ---------
# Nightly (schedule) builds only
# ---------
- name: Get Name of Artifacts (Nightly + Windows Only)
if: ${{ github.event_name == 'schedule' && matrix.os == 'windows-latest' }}
run: |
pnpm -F @proj-airi/stage-tamagotchi name-of-artifacts ${{ matrix.target }} --out bundle_name
echo "BUNDLE_NAME=$(node -p "require('node:fs').readFileSync(require('node:path').join('apps', 'stage-tamagotchi', 'bundle_name')).toString('utf-8')")" >> $env:GITHUB_ENV
- name: Get Name of Artifacts (Nightly)
if: ${{ github.event_name == 'schedule' && matrix.os != 'windows-latest' }}
run: |
pnpm -F @proj-airi/stage-tamagotchi name-of-artifacts ${{ matrix.target }} --out bundle_name
echo "BUNDLE_NAME=$(node -p "require('node:fs').readFileSync(require('node:path').join('apps', 'stage-tamagotchi', 'bundle_name')).toString('utf-8')")" >> $GITHUB_ENV
- name: Rename Artifacts (Nightly)
if: ${{ github.event_name == 'schedule' }}
run:
pnpm run -F @proj-airi/stage-tamagotchi rename-artifacts ${{ matrix.target }}
- name: Upload Artifacts (Nightly)
if: ${{ github.event_name == 'schedule' }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUNDLE_NAME }}
path: bundle/${{ env.BUNDLE_NAME }}
# ---------
# Workflow Dispatch only
# ---------
- name: Get Name of Artifacts (Manual + Windows Only)
if: ${{ github.event_name == 'workflow_dispatch' && matrix.os == 'windows-latest' }}
run: |
pnpm -F @proj-airi/stage-tamagotchi name-of-artifacts ${{ matrix.target }} --out bundle_name --release ${{ !inputs.build_only && !inputs.artifacts_only }} --tag ${{ inputs.tag }} --auto-tag ${{ !inputs.build_only }}
echo "BUNDLE_NAME=$(node -p "require('node:fs').readFileSync(require('node:path').join('apps', 'stage-tamagotchi', 'bundle_name')).toString('utf-8')")" >> $env:GITHUB_ENV
- name: Get Name of Artifacts (Manual)
if: ${{ github.event_name == 'workflow_dispatch' && matrix.os != 'windows-latest' }}
run: |
pnpm -F @proj-airi/stage-tamagotchi name-of-artifacts ${{ matrix.target }} --out bundle_name --release ${{ !inputs.build_only && !inputs.artifacts_only }} --tag ${{ inputs.tag }} --auto-tag ${{ !inputs.build_only }}
echo "BUNDLE_NAME=$(node -p "require('node:fs').readFileSync(require('node:path').join('apps', 'stage-tamagotchi', 'bundle_name')).toString('utf-8')")" >> $GITHUB_ENV
- name: Rename Artifacts (Manual)
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
pnpm run -F @proj-airi/stage-tamagotchi rename-artifacts ${{ matrix.target }} --release ${{ !inputs.build_only && !inputs.artifacts_only }} --tag ${{ inputs.tag }} --auto-tag ${{ !inputs.build_only }}
- name: Upload Artifacts (Manual + Non-Release)
if: ${{ github.event_name == 'workflow_dispatch' && !inputs.build_only && inputs.artifacts_only }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUNDLE_NAME }}
path: bundle/${{ env.BUNDLE_NAME }}
- name: Upload To GitHub Releases (Manual + Overwrite Release)
if: ${{ github.event_name == 'workflow_dispatch' && !inputs.build_only && !inputs.artifacts_only }}
echo VERSION=$(node -p "JSON.parse(require('node:fs').readFileSync(require('node:path').join('apps', 'stage-tamagotchi', 'package.json')).toString('utf-8')).version") >> $GITHUB_ENV
- name: Upload To GitHub Releases
uses: softprops/action-gh-release@v2
with:
files: bundle/${{ env.PRODUCT_NAME }}_*
append_body: true
tag_name: ${{ inputs.tag }}
# ---------
# Version push
# ---------
- name: Rename Artifacts (Automatic)
if: ${{ github.event_name == 'release' }}
run: |
pnpm run -F @proj-airi/stage-tamagotchi rename-artifacts ${{ matrix.target }} --release --auto-tag
- name: Upload To GitHub Releases (Automatic)
if: ${{ github.event_name == 'release' }}
uses: softprops/action-gh-release@v2
with:
files: bundle/${{ env.PRODUCT_NAME }}_*
append_body: true
files: dist/AIRI-${{ steps.version.outputs.VERSION }}-${{ matrix.artifact }}.${{ matrix.ext }}
generate_release_notes: true
+1 -1
View File
@@ -42,6 +42,6 @@
"unplugin-vue-router": "^0.15.0",
"vite": "catalog:rolldown-vite",
"vue-router": "^4.5.1",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+4 -4
View File
@@ -16,7 +16,7 @@ asarUnpack:
win:
executableName: AIRI
nsis:
artifactName: ${productName}-v${version}-windows-${arch}-setup.${ext}
artifactName: ${productName}-${version}-windows-${arch}-setup.${ext}
shortcutName: ${productName}
uninstallDisplayName: ${productName}
createDesktopShortcut: always
@@ -29,16 +29,16 @@ mac:
notarize: false
executableName: AIRI
dmg:
artifactName: ${productName}-v${version}-darwin-${arch}.${ext}
artifactName: ${productName}-${version}-darwin-${arch}.${ext}
linux:
target:
- AppImage
maintainer: moeru.ai
category: Utility
executableName: AIRI
artifactName: ${productName}-v${version}-linux-${arch}.${ext}
artifactName: ${productName}-${version}-linux-${arch}.${ext}
appImage:
artifactName: ${productName}-v${version}-linux-${arch}.${ext}
artifactName: ${productName}-${version}-linux-${arch}.${ext}
npmRebuild: false
publish:
provider: generic
+10 -10
View File
@@ -1,5 +1,5 @@
{
"name": "@proj-airi/stage-tamagotchi-electron",
"name": "@proj-airi/stage-tamagotchi",
"type": "module",
"version": "0.7.2-beta.3",
"private": true,
@@ -29,7 +29,7 @@
"@electron-toolkit/utils": "^4.0.0",
"@formkit/auto-animate": "^0.9.0",
"@guiiai/logg": "catalog:",
"@huggingface/transformers": "^3.7.3",
"@huggingface/transformers": "^3.7.5",
"@moeru/std": "catalog:",
"@proj-airi/audio": "workspace:^",
"@proj-airi/ccc": "workspace:^",
@@ -43,7 +43,7 @@
"@stdlib/string-base-kebabcase": "^0.2.2",
"@tresjs/cientos": "^5.0.0",
"@tresjs/core": "^5.0.2",
"@types/audioworklet": "^0.0.85",
"@types/audioworklet": "^0.0.86",
"@unbird/eventa": "^0.0.11",
"@vueuse/core": "^13.9.0",
"@vueuse/shared": "^13.9.0",
@@ -61,11 +61,11 @@
"culori": "^4.0.2",
"date-fns": "^4.1.0",
"dompurify": "^3.2.7",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.5",
"drizzle-kit": "^0.31.5",
"drizzle-orm": "^0.44.6",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"mediabunny": "^1.20.1",
"mediabunny": "^1.23.0",
"node-vibrant": "^4.0.3",
"nprogress": "^0.2.0",
"ofetch": "^1.4.1",
@@ -114,7 +114,7 @@
"@iconify-json/vscode-icons": "^1.2.30",
"@iconify/utils": "^3.0.2",
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@proj-airi/lobe-icons": "^1.0.11",
"@proj-airi/lobe-icons": "^1.0.12",
"@proj-airi/ui-transitions": "workspace:^",
"@proj-airi/unplugin-fetch": "^0.1.7",
"@proj-airi/unplugin-live2d-sdk": "^0.1.6",
@@ -130,8 +130,8 @@
"@xsai-transformers/embed": "^0.0.7",
"cac": "^6.7.14",
"csstype": "^3.1.3",
"electron": "^38.1.2",
"electron-builder": "^26.0.12",
"electron": "^38.2.0",
"electron-builder": "^26.0.20",
"electron-vite": "^4.0.1",
"execa": "^9.6.0",
"less": "^4.4.1",
@@ -144,6 +144,6 @@
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-vue-devtools": "^8.0.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+2 -2
View File
@@ -35,8 +35,8 @@ let trackCursorPointInterval: NodeJS.Timeout | undefined
function createWindow(): void {
const mainWindow = new BrowserWindow({
title: 'AIRI',
width: 450.0,
height: 600.0,
width: 916.0,
height: 1245.0,
show: false,
icon,
webPreferences: {
@@ -1,11 +1,9 @@
<script setup lang="ts">
import { IconItem } from '@proj-airi/stage-ui/components'
import { CheckBar, IconItem } from '@proj-airi/stage-ui/components'
import { useSettings } from '@proj-airi/stage-ui/stores/settings'
import { computed } from 'vue'
import { useI18n } from 'vue-i18n'
import CheckBar from '../../../components/Settings/CheckBar.vue'
const { t } = useI18n()
const settings = useSettings()
+9 -9
View File
@@ -19,7 +19,7 @@
"dependencies": {
"@date-fns/utc": "^2.1.1",
"@formkit/auto-animate": "^0.9.0",
"@huggingface/transformers": "^3.7.3",
"@huggingface/transformers": "^3.7.5",
"@moeru/std": "catalog:",
"@nekopaw/tempora": "0.3.1-alpha.1",
"@proj-airi/audio": "workspace:^",
@@ -53,19 +53,19 @@
"@xsai/shared-chat": "catalog:",
"@xsai/stream-text": "catalog:",
"@xsai/utils-chat": "catalog:",
"animejs": "^4.1.3",
"animejs": "^4.2.0",
"colorjs.io": "^0.5.2",
"culori": "^4.0.2",
"date-fns": "^4.1.0",
"dompurify": "^3.2.7",
"driver.js": "^1.3.6",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.5",
"drizzle-kit": "^0.31.5",
"drizzle-orm": "^0.44.6",
"gpuu": "^1.0.5",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"mediabunny": "^1.20.1",
"mediabunny": "^1.23.0",
"nanoid": "^5.1.6",
"node-vibrant": "^4.0.3",
"nprogress": "^0.2.0",
@@ -86,7 +86,7 @@
"vue-demi": "^0.14.10",
"vue-i18n": "^11.1.12",
"vue-router": "^4.5.1",
"vue-sonner": "^2.0.8",
"vue-sonner": "^2.0.9",
"workbox-window": "^7.3.0",
"xsschema": "catalog:",
"yauzl": "^3.2.0",
@@ -102,11 +102,11 @@
"@iconify-json/svg-spinners": "^1.2.4",
"@iconify-json/vscode-icons": "^1.2.30",
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@proj-airi/lobe-icons": "^1.0.11",
"@proj-airi/lobe-icons": "^1.0.12",
"@proj-airi/unplugin-fetch": "^0.1.7",
"@proj-airi/unplugin-live2d-sdk": "^0.1.6",
"@shikijs/markdown-it": "^3.13.0",
"@types/audioworklet": "^0.0.85",
"@types/audioworklet": "^0.0.86",
"@types/culori": "^4.0.1",
"@types/nprogress": "^0.2.3",
"@types/three": "^0.180.0",
@@ -128,6 +128,6 @@
"vite-plugin-pwa": "^1.0.3",
"vite-plugin-vue-devtools": "^8.0.2",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+4 -4
View File
@@ -24,12 +24,12 @@
"@vueuse/core": "^13.9.0",
"colorjs.io": "^0.5.2",
"mark.js": "^8.11.1",
"motion-v": "^1.7.1",
"motion-v": "^1.7.2",
"pathe": "^2.0.3",
"reka-ui": "^2.5.1",
"vue": "^3.5.22",
"vue-i18n": "^11.1.12",
"vue-sonner": "^2.0.8"
"vue-sonner": "^2.0.9"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.68",
@@ -44,7 +44,7 @@
"@types/markdown-it-anchor": "^7.0.0",
"@unocss/reset": "^66.5.2",
"@vue/tsconfig": "^0.8.1",
"animejs": "^4.1.4",
"animejs": "^4.2.0",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.0",
@@ -58,6 +58,6 @@
"uncrypto": "^0.1.3",
"unplugin-yaml": "^3.0.6",
"vitepress": "^2.0.0-alpha.12",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+7 -7
View File
@@ -3,7 +3,7 @@
"type": "module",
"version": "0.7.2-beta.3",
"private": true,
"packageManager": "pnpm@10.17.1",
"packageManager": "pnpm@10.18.0",
"description": "LLM powered virtual character",
"author": {
"name": "Moeru AI Project AIRI Team",
@@ -45,7 +45,7 @@
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@iconify/utils": "^3.0.2",
"@proj-airi/unocss-preset-chromatic": "^1.0.0",
"@types/node": "^24.5.2",
"@types/node": "^24.6.2",
"@unocss/eslint-config": "^66.5.2",
"@unocss/eslint-plugin": "^66.5.2",
"@unocss/preset-mini": "^66.5.2",
@@ -54,15 +54,15 @@
"bumpp": "^10.2.3",
"eslint": "^9.36.0",
"execa": "^9.6.0",
"lint-staged": "^16.2.1",
"rollup": "^4.52.2",
"lint-staged": "^16.2.3",
"rollup": "^4.52.4",
"simple-git-hooks": "^2.13.1",
"smol-toml": "^1.4.2",
"taze": "^19.7.0",
"tsdown": "^0.15.4",
"tsdown": "^0.15.6",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "~5.9.2",
"typescript": "~5.9.3",
"uncrypto": "^0.1.3",
"unocss": "^66.5.2",
"unocss-preset-scrollbar": "^3.2.0",
@@ -70,7 +70,7 @@
"unplugin-raw": "^0.6.3",
"unplugin-unused": "^0.5.3",
"unplugin-vue": "^7.0.1",
"vite": "^7.1.7",
"vite": "^7.1.9",
"vite-plugin-inspect": "^11.3.3",
"vitest": "^3.2.4"
},
+2 -2
View File
@@ -57,7 +57,7 @@
},
"devDependencies": {
"@moeru/std": "catalog:",
"@types/audioworklet": "^0.0.85",
"vite": "^7.1.7"
"@types/audioworklet": "^0.0.86",
"vite": "^7.1.9"
}
}
+1 -1
View File
@@ -22,7 +22,7 @@
"dependencies": {
"@guiiai/logg": "catalog:",
"@proj-airi/server-sdk": "workspace:^",
"drizzle-orm": "^0.44.5",
"drizzle-orm": "^0.44.6",
"postgres": "^3.4.7"
},
"devDependencies": {
+1 -1
View File
@@ -44,6 +44,6 @@
},
"devDependencies": {
"@types/three": "^0.180.0",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+1 -1
View File
@@ -38,6 +38,6 @@
"devDependencies": {
"@types/culori": "^4.0.1",
"@types/three": "^0.180.0",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+7 -7
View File
@@ -45,7 +45,7 @@
"dependencies": {
"@date-fns/utc": "^2.1.1",
"@formkit/auto-animate": "^0.9.0",
"@huggingface/transformers": "^3.7.3",
"@huggingface/transformers": "^3.7.5",
"@lemonneko/crop-empty-pixels": "0.1.1",
"@nekopaw/tempora": "0.3.1-alpha.1",
"@pixi/app": "^6.5.10",
@@ -96,14 +96,14 @@
"@xsai/shared-chat": "catalog:",
"@xsai/stream-text": "catalog:",
"@xsai/tool": "catalog:",
"animejs": "^4.1.4",
"animejs": "^4.2.0",
"culori": "^4.0.2",
"date-fns": "^4.1.0",
"dompurify": "^3.2.7",
"gpuu": "^1.0.5",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"mediabunny": "^1.20.1",
"mediabunny": "^1.23.0",
"nanoid": "^5.1.6",
"pinia": "^3.0.3",
"pixi-filters": "4",
@@ -123,8 +123,8 @@
"vaul-vue": "^0.4.1",
"vue-i18n": "^11.1.12",
"vue-router": "^4.5.1",
"vue-sonner": "^2.0.8",
"vue-tsc": "^3.0.8",
"vue-sonner": "^2.0.9",
"vue-tsc": "^3.1.0",
"xast-util-to-xml": "^4.0.0",
"xastscript": "^4.0.0",
"zod": "^4.1.11"
@@ -150,8 +150,8 @@
"@iconify-json/svg-spinners": "^1.2.4",
"@iconify-json/vscode-icons": "^1.2.30",
"@moeru/std": "catalog:",
"@proj-airi/lobe-icons": "^1.0.11",
"@types/audioworklet": "^0.0.85",
"@proj-airi/lobe-icons": "^1.0.12",
"@types/audioworklet": "^0.0.86",
"@types/culori": "^4.0.1",
"@types/three": "^0.180.0",
"@unocss/reset": "^66.5.2",
+2 -2
View File
@@ -2,7 +2,7 @@
"name": "@proj-airi/tauri-plugin-mcp",
"type": "module",
"version": "0.7.2-beta.3",
"packageManager": "pnpm@10.17.1",
"packageManager": "pnpm@10.18.0",
"description": "A Tauri plugin for interacting with MCP servers.",
"author": {
"name": "Moeru AI Project AIRI Team",
@@ -30,7 +30,7 @@
"@tauri-apps/api": "^2.8.0"
},
"devDependencies": {
"pkgroll": "^2.15.4"
"pkgroll": "^2.17.0"
},
"publishConfig": {
"exports": {
+1 -1
View File
@@ -29,6 +29,6 @@
},
"devDependencies": {
"@types/three": "^0.180.0",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+1 -1
View File
@@ -40,6 +40,6 @@
"vite": "catalog:rolldown-vite",
"vite-plugin-vue-devtools": "^8.0.2",
"vue-router": "^4.5.1",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+1 -1
View File
@@ -37,6 +37,6 @@
"vite": "catalog:rolldown-vite",
"vite-plugin-vue-devtools": "^8.0.2",
"vue-router": "^4.5.1",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
+1 -1
View File
@@ -31,6 +31,6 @@
},
"devDependencies": {
"@vue-macros/volar": "3.0.0-beta.8",
"vue-tsc": "^3.0.8"
"vue-tsc": "^3.1.0"
}
}
@@ -20,7 +20,7 @@
"devDependencies": {
"@unocss/reset": "^66.5.2",
"@wxt-dev/module-vue": "^1.0.3",
"vue-tsc": "^3.0.8",
"vue-tsc": "^3.1.0",
"wxt": "^0.20.11"
}
}
+2318 -2020
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -28,4 +28,4 @@ catalog:
catalogs:
rolldown-vite:
vite: npm:rolldown-vite@^7.1.13
vite: npm:rolldown-vite@^7.1.15
+1 -1
View File
@@ -22,7 +22,7 @@
"@discordjs/voice": "^0.19.0",
"@dotenvx/dotenvx": "^1.51.0",
"@guiiai/logg": "catalog:",
"@huggingface/transformers": "^3.7.3",
"@huggingface/transformers": "^3.7.5",
"@proj-airi/audio": "workspace:^",
"@proj-airi/server-sdk": "workspace:^",
"@proj-airi/server-shared": "workspace:^",
+2 -2
View File
@@ -18,7 +18,7 @@
"awilix": "^12.0.5",
"es-toolkit": "^1.39.10",
"eventemitter3": "^5.0.1",
"minecraft-data": "^3.98.0",
"minecraft-data": "^3.99.1",
"mineflayer": "^4.33.0",
"mineflayer-armor-manager": "^2.0.1",
"mineflayer-auto-eat": "^5.0.3",
@@ -40,6 +40,6 @@
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.0",
"dotenv": "^17.2.2"
"dotenv": "^17.2.3"
}
}
+5 -5
View File
@@ -28,10 +28,10 @@
"@guiiai/logg": "catalog:",
"@moeru/std": "catalog:",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.64.1",
"@opentelemetry/auto-instrumentations-node": "^0.64.6",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.205.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.205.0",
"@opentelemetry/instrumentation-pg": "^0.58.0",
"@opentelemetry/instrumentation-pg": "^0.58.3",
"@opentelemetry/resources": "^2.1.0",
"@opentelemetry/sdk-metrics": "^2.1.0",
"@opentelemetry/sdk-node": "^0.205.0",
@@ -45,8 +45,8 @@
"@xsai/tool": "catalog:",
"@xsai/utils-chat": "catalog:",
"best-effort-json-parser": "^1.2.1",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.6",
"es-toolkit": "^1.39.10",
"fluent-ffmpeg": "^2.1.3",
"grammy": "^1.38.2",
@@ -60,7 +60,7 @@
},
"devDependencies": {
"@types/pg": "^8.15.5",
"drizzle-kit": "^0.31.4",
"drizzle-kit": "^0.31.5",
"tsx": "^4.20.6"
}
}
+4 -4
View File
@@ -14,10 +14,10 @@
"dependencies": {
"@browserbasehq/stagehand": "^2.5.0",
"@guiiai/logg": "catalog:",
"@modelcontextprotocol/sdk": "^1.18.2",
"@modelcontextprotocol/sdk": "^1.19.1",
"@moeru/std": "catalog:",
"@proj-airi/server-sdk": "^0.7.2-beta.2",
"dotenv": "^17.2.2",
"dotenv": "^17.2.3",
"h3": "^1.15.4",
"listhen": "^1.9.0",
"ofetch": "^1.4.1",
@@ -25,8 +25,8 @@
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/node": "^24.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}