@ebowwa/claudecodehistory 1.2.0 → 1.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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,7 @@ This library provides a `ClaudeCodeHistoryService` class that offers:
16
16
  ## Installation
17
17
 
18
18
  ```bash
19
- npm install @ebowwa/claudecodehistory
19
+ bun install @ebowwa/claudecodehistory
20
20
  ```
21
21
 
22
22
  ## Quick Start
@@ -252,13 +252,13 @@ git clone https://github.com/ebowwa/claude-code-history-mcp.git
252
252
  cd claude-code-history-mcp
253
253
 
254
254
  # Install dependencies
255
- npm install
255
+ bun install
256
256
 
257
257
  # Build
258
- npm run build
258
+ bun run build
259
259
 
260
260
  # Run tests
261
- npm test
261
+ bun test
262
262
  ```
263
263
 
264
264
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebowwa/claudecodehistory",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "TypeScript library for accessing and analyzing Claude Code conversation history",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",