-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7e94e3
commit 6161477
Showing
13 changed files
with
600 additions
and
516 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "airi-vtuber", | ||
"type": "module", | ||
"packageManager": "[email protected].3", | ||
"packageManager": "[email protected].4", | ||
"description": "LLM powered virtual character", | ||
"author": { | ||
"name": "Neko Ayaka", | ||
|
@@ -31,16 +31,16 @@ | |
"@antfu/eslint-config": "^3.14.0", | ||
"@antfu/ni": "^23.2.0", | ||
"@cspell/dict-ru_ru": "^2.2.4", | ||
"@types/node": "^22.10.5", | ||
"@types/node": "^22.10.6", | ||
"@unocss/eslint-config": "^65.4.0", | ||
"@unocss/eslint-plugin": "^65.4.0", | ||
"bumpp": "^9.10.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^9.17.0", | ||
"eslint": "^9.18.0", | ||
"eslint-plugin-cypress": "^4.1.0", | ||
"eslint-plugin-format": "^1.0.1", | ||
"lint-staged": "^15.3.0", | ||
"pnpm": "^9.15.3", | ||
"pnpm": "^9.15.4", | ||
"rollup": "^4.30.1", | ||
"simple-git-hooks": "^2.11.1", | ||
"taze": "^18.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@proj-airi/moonshine-web", | ||
"type": "module", | ||
"private": true, | ||
"packageManager": "[email protected].3", | ||
"packageManager": "[email protected].4", | ||
"description": "Yet another WebGPU based STT + VAD with Moonshine model re-implemented", | ||
"author": { | ||
"name": "Neko Ayaka", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "@proj-airi/server-runtime", | ||
"type": "module", | ||
"version": "0.1.1", | ||
"private": false, | ||
"description": "Server runtime and utility implementation for Airi running in different environments", | ||
"author": { | ||
"name": "Neko Ayaka", | ||
"email": "[email protected]", | ||
"url": "https://github.com/nekomeowww" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/moeru-ai/airi.git", | ||
"directory": "packages/server-runtime" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"README.md", | ||
"dist", | ||
"package.json" | ||
], | ||
"scripts": {}, | ||
"dependencies": { | ||
"defu": "^6.1.4", | ||
"h3": "^1.13.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Import h3 as npm dependency | ||
import { createApp, createRouter, defineEventHandler } from 'h3' | ||
|
||
// Create an app instance | ||
export const app = createApp() | ||
|
||
// Create a new router and register it in app | ||
const router = createRouter() | ||
app.use(router) | ||
|
||
// Add a new route that matches GET requests to / path | ||
router.get( | ||
'/', | ||
defineEventHandler(() => { | ||
return { message: '⚡️ Tadaa!' } | ||
}), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ESNext", | ||
"lib": [ | ||
"ESNext" | ||
], | ||
"module": "ESNext", | ||
"moduleResolution": "bundler", | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"isolatedModules": true, | ||
"verbatimModuleSyntax": true, | ||
"skipLibCheck": true | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@proj-airi/stage-ui", | ||
"type": "module", | ||
"private": true, | ||
"packageManager": "[email protected].3", | ||
"packageManager": "[email protected].4", | ||
"description": "Shared core for stage", | ||
"author": { | ||
"name": "Neko Ayaka", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@proj-airi/stage-web", | ||
"type": "module", | ||
"private": true, | ||
"packageManager": "[email protected].3", | ||
"packageManager": "[email protected].4", | ||
"description": "LLM powered virtual character", | ||
"author": { | ||
"name": "Neko Ayaka", | ||
|
@@ -43,7 +43,7 @@ | |
"@tresjs/core": "^4.3.2", | ||
"@types/yauzl": "^2.10.3", | ||
"@typeschema/valibot": "^0.14.0", | ||
"@unhead/vue": "^1.11.16", | ||
"@unhead/vue": "^1.11.18", | ||
"@unocss/reset": "^65.4.0", | ||
"@vueuse/core": "^12.4.0", | ||
"@vueuse/head": "^2.0.0", | ||
|
@@ -65,7 +65,7 @@ | |
"rehype-stringify": "^10.0.1", | ||
"remark-parse": "^11.0.0", | ||
"remark-rehype": "^11.1.1", | ||
"shiki": "^1.26.1", | ||
"shiki": "^1.27.0", | ||
"three": "^0.172.0", | ||
"unified": "^11.0.5", | ||
"valibot": "1.0.0-beta.9", | ||
|
@@ -80,15 +80,15 @@ | |
"devDependencies": { | ||
"@iconify-json/carbon": "^1.2.5", | ||
"@iconify-json/eos-icons": "^1.2.2", | ||
"@iconify-json/lucide": "^1.2.22", | ||
"@iconify-json/lucide": "^1.2.23", | ||
"@iconify-json/mingcute": "^1.2.3", | ||
"@iconify-json/solar": "^1.2.2", | ||
"@iconify-json/svg-spinners": "^1.2.2", | ||
"@intlify/unplugin-vue-i18n": "^6.0.3", | ||
"@proj-airi/elevenlabs": "workspace:^", | ||
"@proj-airi/unplugin-download": "workspace:^", | ||
"@proj-airi/unplugin-live2d-sdk": "workspace:^", | ||
"@shikijs/markdown-it": "^1.26.1", | ||
"@shikijs/markdown-it": "^1.26.2", | ||
"@types/markdown-it-link-attributes": "^3.0.5", | ||
"@types/nprogress": "^0.2.3", | ||
"@types/three": "^0.172.0", | ||
|
@@ -97,9 +97,6 @@ | |
"@vueuse/motion": "^2.2.6", | ||
"hfup": "workspace:^", | ||
"markdown-it-link-attributes": "^4.0.1", | ||
"unocss-preset-animations": "^1.1.0", | ||
"unocss-preset-shadcn": "^0.3.1", | ||
"unocss-preset-theme": "^0.14.1", | ||
"unplugin-auto-import": "^19.0.0", | ||
"unplugin-vue-components": "^28.0.0", | ||
"unplugin-vue-macros": "^2.13.8", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@proj-airi/whisper-webgpu", | ||
"type": "module", | ||
"private": true, | ||
"packageManager": "[email protected].3", | ||
"packageManager": "[email protected].4", | ||
"description": "Yet another WebGPU based Whisper Realtime STT re-implemented", | ||
"author": { | ||
"name": "Neko Ayaka", | ||
|
Oops, something went wrong.