kokoirc 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -146,7 +146,7 @@ Format codes: `%r` red, `%g` green, `%ZRRGGBB` hex color, `%_` bold, `%u` underl
146
146
  Scripts are TypeScript files loaded from `~/.kokoirc/scripts/`. See `examples/scripts/` for samples.
147
147
 
148
148
  ```typescript
149
- import type { KokoAPI } from "kokoirc-client/api"
149
+ import type { KokoAPI } from "kokoirc/api"
150
150
 
151
151
  export default function slap(api: KokoAPI) {
152
152
  api.command("slap", ({ args, buffer }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kokoirc",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Terminal IRC client built with OpenTUI and React",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",