airi/packages/server-shared/package.json
2025-12-02 03:00:12 +08:00

35 lines
842 B
JSON

{
"name": "@proj-airi/server-shared",
"type": "module",
"version": "0.8.0-alpha.8",
"description": "Server shared types, utilities for AIRI server components and runtimes",
"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-shared"
},
"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"
}
}