refactor: update Deno RPC interface and package files configuration

This commit is contained in:
Huakun Shen 2025-02-13 09:28:47 -05:00
parent b61b03c9b5
commit 005c69da57
No known key found for this signature in database
2 changed files with 12 additions and 10 deletions

View File

@ -1,8 +1,9 @@
import { expose } from "@kunkun/api/runtime/deno"; import { expose } from "@kunkun/api/runtime/deno";
import { wakeOnLan } from "@hk/wol/deno"; import { wakeOnLan } from "@hk/wol/deno";
import type { API } from "../src/types.ts";
expose({ expose({
wakeOnLan: (mac: string, ip: string, port: number) => { wakeOnLan: (mac: string, ip: string, port?: number) => {
wakeOnLan(mac, ip, port); return wakeOnLan(mac, ip, port);
}, },
}); } satisfies API);

View File

@ -8,6 +8,13 @@
"type": "git", "type": "git",
"url": "https://github.com/kunkunsh/kunkun-ext-wol" "url": "https://github.com/kunkunsh/kunkun-ext-wol"
}, },
"files": [
"dist",
"deno-src",
"src/types.ts",
"README.md",
".gitignore"
],
"kunkun": { "kunkun": {
"name": "Wake On Lan", "name": "Wake On Lan",
"shortDescription": "Wake On Lan", "shortDescription": "Wake On Lan",
@ -60,11 +67,5 @@
}, },
"peerDependencies": { "peerDependencies": {
"typescript": "^5.0.0" "typescript": "^5.0.0"
}, }
"files": [
"dist",
"deno-src",
"README.md",
".gitignore"
]
} }