feat(plugin-protocol,server-shared): new package

This commit is contained in:
Neko Ayaka
2026-02-08 03:44:04 +08:00
parent d98b3c6a2c
commit ca19529675
11 changed files with 1167 additions and 1008 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"name": "@proj-airi/plugin-protocol",
"type": "module",
"version": "0.8.4",
"description": "Plugin protocol event definitions and shared websocket types for Project AIRI",
"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/plugin-protocol"
},
"exports": {
"./types": {
"types": "./dist/types/index.d.mts",
"default": "./dist/types/index.mjs"
}
},
"main": "./dist/types/index.mjs",
"types": "./dist/types/index.d.mts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "pnpm run build",
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@moeru/eventa": "catalog:",
"@xsai/shared-chat": "catalog:"
}
}