airi/packages/server-runtime/package.json
2025-08-25 03:56:39 +08:00

44 lines
1.1 KiB
JSON

{
"name": "@proj-airi/server-runtime",
"type": "module",
"version": "0.7.2-beta.2",
"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.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": {
"dev": "listhen -w --ws --port 6121 ./src/index.ts",
"start": "listhen --ws --port 6121 ./src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@guiiai/logg": "^1.0.10",
"@proj-airi/server-shared": "workspace:^",
"crossws": "^0.4.1",
"h3": "^1.15.4",
"listhen": "^1.9.0"
}
}