airi/packages/server-shared/package.json
2025-04-07 18:30:34 +08:00

41 lines
979 B
JSON

{
"name": "@proj-airi/server-shared",
"type": "module",
"version": "0.4.21",
"description": "Server shared types, utilities for Airi server components and runtimes",
"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-shared"
},
"exports": {
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.cjs"
}
},
"main": "./dist/types/index.cjs",
"module": "./dist/types/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "pnpm run stub",
"stub": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"crossws": "^0.3.4"
}
}