mirror of
https://github.com/moeru-ai/airi.git
synced 2026-07-09 15:58:27 +00:00
Some checks are pending
CI / Lint (push) Waiting to run
CI / Build Test (stage-tamagotchi) (push) Waiting to run
CI / Build Test (stage-tamagotchi-godot) (push) Waiting to run
CI / Build Test (stage-web) (push) Waiting to run
CI / Build Test (ui-loading-screens) (push) Waiting to run
CI / Build Test (ui-transitions) (push) Waiting to run
CI / Unit Test (push) Waiting to run
CI / Type Check (push) Waiting to run
CI / Check Provenance (push) Waiting to run
Cloudflare Pages (Auth UI) / Deploy - ui-server-auth (push) Waiting to run
Cloudflare Workers / Deploy - stage-web (push) Waiting to run
Update Nix pnpmDeps Hash / update (push) Waiting to run
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@proj-airi/server-runtime",
|
|
"type": "module",
|
|
"version": "0.11.0",
|
|
"description": "Server runtime implementation for AIRI running in different environments",
|
|
"author": {
|
|
"name": "Moeru AI Project AIRI Team",
|
|
"email": "airi@moeru.ai",
|
|
"url": "https://github.com/moeru-ai"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/moeru-ai/airi.git",
|
|
"directory": "packages/server-runtime"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./server": {
|
|
"types": "./dist/server.d.mts",
|
|
"default": "./dist/server.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"bin": "./dist/bin/run.mjs",
|
|
"files": [
|
|
"README.md",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"dev": "tsx ./src/bin/run.js",
|
|
"start": "tsx ./src/bin/run.js",
|
|
"build": "tsdown",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@guiiai/logg": "catalog:",
|
|
"@moeru/std": "catalog:",
|
|
"@proj-airi/better-ws": "workspace:^",
|
|
"@proj-airi/server-shared": "workspace:^",
|
|
"crossws": "catalog:",
|
|
"h3": "catalog:",
|
|
"nanoid": "catalog:",
|
|
"srvx": "catalog:",
|
|
"superjson": "catalog:",
|
|
"valibot": "catalog:"
|
|
}
|
|
}
|