mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-19 16:42:27 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@proj-airi/server-runtime",
|
|
"type": "module",
|
|
"version": "0.1.1",
|
|
"private": false,
|
|
"description": "Server runtime implementation for Airi running in different environments",
|
|
"author": {
|
|
"name": "Neko Ayaka",
|
|
"email": "neko@ayaka.moe",
|
|
"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": {
|
|
"dev": "listhen -w --ws --port 6121 ./src/index.ts",
|
|
"start": "listhen --ws --port 6121 ./src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@guiiai/logg": "^1.0.6",
|
|
"@proj-airi/server-shared": "workspace:^",
|
|
"crossws": "^0.3.1",
|
|
"defu": "^6.1.4",
|
|
"h3": "^1.13.1",
|
|
"listhen": "^1.9.0"
|
|
}
|
|
}
|