feat: expose helper API in headless and UI modules

- Add helper API to headless module exports
- Update UI custom module to include helper API
- Bump package version to 0.1.3
This commit is contained in:
Huakun Shen 2025-02-07 02:45:57 -05:00
parent 7b6c0934ab
commit 27fdff03d9
No known key found for this signature in database
4 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@kunkun/api",
"version": "0.1.1",
"version": "0.1.3",
"license": "MIT",
"exports": {
".": "./src/index.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@kksh/api",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"repository": {
"type": "git",

View File

@ -110,6 +110,7 @@ export const {
notification,
sysInfo,
network,
helper,
system,
open,
utils,

View File

@ -101,6 +101,7 @@ export const {
toast,
utils,
open,
app
app,
helper
} = api
export { Child, RPCChannel, Command, DenoCommand } from "../../api/shell"