Files
moeka-project/packages/server-sdk/package.json
T
2025-02-10 20:03:14 +08:00

46 lines
1.1 KiB
JSON

{
"name": "@proj-airi/server-sdk",
"type": "module",
"version": "0.1.6",
"private": false,
"description": "Client-side SDK implementation for connecting to 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-sdk"
},
"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": "pnpm run stub",
"stub": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"package:publish": "pnpm build && pnpm publish --access public --no-git-checks"
},
"dependencies": {
"@proj-airi/server-shared": "workspace:^",
"crossws": "^0.3.3",
"defu": "^6.1.4"
}
}