@daviddh/llm-markdown-whatsapp 0.0.2 → 0.0.3

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 +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -65,13 +65,13 @@ The library takes a markdown string and splits it into an array of smaller chunk
65
65
  ## Quickstart
66
66
 
67
67
  ```bash
68
- npm install @llm-markdown-whatsapp
68
+ npm install @daviddh/llm-markdown-whatsapp
69
69
  ```
70
70
 
71
71
  ### Basic Usage
72
72
 
73
73
  ```typescript
74
- import { splitChatText } from '@llm-markdown-whatsapp';
74
+ import { splitChatText } from '@daviddh/llm-markdown-whatsapp';
75
75
 
76
76
  const llmResponse = 'Thanks for reaching out. I understand your situation and I want to help you resolve it in the best way possible. You can send your product back at no extra cost. Would you prefer a full refund or an exchange for a different model?';
77
77
 
@@ -187,7 +187,7 @@ Splits a markdown text string into an array of chat-ready chunks.
187
187
  - Returns `[]` for `null`, `undefined`, or empty string.
188
188
 
189
189
  ```typescript
190
- import { splitChatText } from '@llm-markdown-whatsapp';
190
+ import { splitChatText } from '@daviddh/llm-markdown-whatsapp';
191
191
 
192
192
  const chunks = splitChatText(llmMarkdownText);
193
193
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daviddh/llm-markdown-whatsapp",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "private": false,
5
5
  "description": "Transforms Markdown into WhatsApp text format",
6
6
  "keywords": [
@@ -55,9 +55,9 @@
55
55
  "format": "prettier --write \"**/*.{js,ts,json}\"",
56
56
  "check": "npm run format && npm run lint && npm run typecheck",
57
57
  "build": "npm run build --workspaces",
58
- "build:core": "npm run build -w @llm-markdown-whatsapp/core",
58
+ "build:core": "npm run build -w @daviddh/llm-markdown-whatsapp/core",
59
59
  "test": "npm run test --workspaces --if-present",
60
- "test:core": "npm run test -w @llm-markdown-whatsapp/core"
60
+ "test:core": "npm run test -w @daviddh/llm-markdown-whatsapp/core"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@eslint/js": "^9.28.0",