feat(airi-plugin-bilibili-laplace): added new package for homeassistant

This commit is contained in:
Neko Ayaka
2025-12-29 02:27:50 +08:00
parent e58be05ad4
commit 4401b96c9c
4 changed files with 57 additions and 0 deletions
@@ -0,0 +1,15 @@
{
"name": "@proj-airi/airi-plugin-homeassistant",
"type": "module",
"version": "0.8.0-beta.8",
"private": true,
"description": "Home Assistant integration plugin for AIRI server",
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@guiiai/logg": "catalog:",
"@proj-airi/server-sdk": "workspace:*"
}
}
@@ -0,0 +1 @@
console.warn('WIP')
@@ -0,0 +1,31 @@
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"lib": [
"DOM",
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts"
],
"exclude": [
"dist",
"node_modules"
]
}
@@ -0,0 +1,10 @@
import { defineConfig } from 'tsdown'
export default defineConfig([
{
entry: ['./src/index.ts'],
dts: true,
unused: true,
publint: true,
},
])