mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-17 04:20:26 +00:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@proj-airi/plugin-sdk",
|
|
"type": "module",
|
|
"version": "0.9.0-alpha.14",
|
|
"private": true,
|
|
"description": "Plugin SDK 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-sdk"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./plugin-host": {
|
|
"types": "./dist/plugin-host/index.d.mts",
|
|
"node": "./dist/plugin-host/runtimes/node/index.mjs",
|
|
"default": "./dist/plugin-host/runtimes/web/index.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"files": [
|
|
"README.md",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "pnpm run build",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@moeru/eventa": "catalog:",
|
|
"@proj-airi/plugin-protocol": "workspace:*",
|
|
"@proj-airi/server-shared": "workspace:*",
|
|
"valibot": "^1.2.0",
|
|
"xstate": "^5.28.0"
|
|
}
|
|
}
|