feat(server): basic implementation of server runtime and SDK (#13)
* feat(server): basic implementation of server runtime and SDK * refactor: better typing
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "@proj-airi/server-shared",
|
||||
"type": "module",
|
||||
"version": "0.1.1",
|
||||
"private": false,
|
||||
"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",
|
||||
"package:publish": "pnpm build && pnpm publish --access public --no-git-checks"
|
||||
},
|
||||
"dependencies": {
|
||||
"crossws": "^0.3.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user