49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@proj-airi/server-sdk",
|
|
"type": "module",
|
|
"version": "0.4.8",
|
|
"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"
|
|
},
|
|
"./utils/node": {
|
|
"types": "./dist/utils/node/index.d.ts",
|
|
"import": "./dist/utils/node/index.mjs",
|
|
"require": "./dist/utils/node/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"
|
|
},
|
|
"dependencies": {
|
|
"@proj-airi/server-shared": "workspace:^",
|
|
"crossws": "^0.3.4",
|
|
"defu": "^6.1.4"
|
|
}
|
|
}
|