@bagooon/chatease-node-client 0.1.0 → 0.1.2

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 +8 -2
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
+ <a href="https://chatease.jp/" target="_blank"><img width="500" height="107" alt="ChatEase" src="https://github.com/user-attachments/assets/f65e3f07-0ab8-4f41-986c-2fb121d04e12" /></a>
2
+
1
3
  # @bagooon/chatease-node-client
2
4
 
3
- Node.js 向けの **ChatEase チャットボード API クライアント** です。
5
+ [![npm version](https://img.shields.io/npm/v/@bagooon/chatease-node-client.svg)](https://www.npmjs.com/package/@bagooon/chatease-node-client)
6
+ [![CI](https://github.com/bagooon/chatease-node-client/actions/workflows/ci.yml/badge.svg)](https://github.com/bagooon/chatease-node-client/actions/workflows/ci.yml)
7
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
8
+
9
+ Node.js 向けの **[ChatEase](https://chatease.jp "ChatEase.jp") チャットボード API クライアント** です。
4
10
  サーバーサイド(Node.js)専用で、ブラウザからの利用は想定していません。
5
11
 
6
12
  > ⚠️ This package is **Node.js-only**.
@@ -46,7 +52,7 @@ pnpm add @bagooon/chatease-node-client
46
52
  ## Quick Start
47
53
 
48
54
  ```ts
49
- import { ChatEaseClient } from '@hashimoto-giken/chatease-node-client'
55
+ import { ChatEaseClient } from '@bagooon/chatease-node-client'
50
56
 
51
57
  const chatease = new ChatEaseClient({
52
58
  apiToken: process.env.CHATEASE_API_TOKEN!,
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "@bagooon/chatease-node-client",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Node.js-only client for ChatEase board API",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/bagooon/chatease-node-client.git"
8
+ },
9
+ "bugs": {
10
+ "url": "https://github.com/bagooon/chatease-node-client/issues"
11
+ },
12
+ "homepage": "https://chatease.jp/",
5
13
  "type": "module",
6
14
  "main": "dist/index.js",
7
15
  "types": "dist/index.d.ts",