mirror of
https://github.com/kunkunsh/kunkun-ext-wol.git
synced 2025-04-03 18:06:43 +00:00
refactor: update Deno RPC interface and package files configuration
This commit is contained in:
parent
b61b03c9b5
commit
005c69da57
@ -1,8 +1,9 @@
|
||||
import { expose } from "@kunkun/api/runtime/deno";
|
||||
import { wakeOnLan } from "@hk/wol/deno";
|
||||
import type { API } from "../src/types.ts";
|
||||
|
||||
expose({
|
||||
wakeOnLan: (mac: string, ip: string, port: number) => {
|
||||
wakeOnLan(mac, ip, port);
|
||||
wakeOnLan: (mac: string, ip: string, port?: number) => {
|
||||
return wakeOnLan(mac, ip, port);
|
||||
},
|
||||
});
|
||||
} satisfies API);
|
||||
|
15
package.json
15
package.json
@ -8,6 +8,13 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/kunkunsh/kunkun-ext-wol"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"deno-src",
|
||||
"src/types.ts",
|
||||
"README.md",
|
||||
".gitignore"
|
||||
],
|
||||
"kunkun": {
|
||||
"name": "Wake On Lan",
|
||||
"shortDescription": "Wake On Lan",
|
||||
@ -60,11 +67,5 @@
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"deno-src",
|
||||
"README.md",
|
||||
".gitignore"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user