llaminate 0.1.2 → 0.1.4

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.
package/README.md CHANGED
@@ -8,7 +8,7 @@ tools. Ideal for quickly building applications to interact with LLM services,
8
8
  that may need to switch between them.
9
9
 
10
10
  ```bash
11
- npm -i llaminate
11
+ npm i llaminate
12
12
  ```
13
13
 
14
14
  ```typescript
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "llaminate",
3
- "version": "0.1.2",
4
- "date": "2026-03-26T10:52:45.901Z"
3
+ "version": "0.1.4",
4
+ "date": "2026-03-26T11:12:26.222Z"
5
5
  }
package/docs/index.html CHANGED
@@ -49,7 +49,7 @@ between chat completion APIs across LLM providers.</p>
49
49
  <p>It's robust at managing prompts, message histories, token usage and integrating
50
50
  tools. Ideal for quickly building applications to interact with LLM services,
51
51
  that may need to switch between them.</p>
52
- <pre class="prettyprint source lang-bash"><code>npm -i llaminate
52
+ <pre class="prettyprint source lang-bash"><code>npm i llaminate
53
53
  </code></pre>
54
54
  <pre class="prettyprint source lang-typescript"><code>import { Llaminate } from &quot;llaminate&quot;;
55
55
  </code></pre>
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "llaminate",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "A simple but powerful library that abstracts LLM chat completions, providing chat history, tokens tracking and tools interfaces.",
5
5
  "repository": "github:oliver-moran/llaminate",
6
+ "homepage": "https://oliver-moran.github.io/llaminate/",
7
+ "bugs": {
8
+ "url": "https://github.com/oliver-moran/llaminate/issues"
9
+ },
6
10
  "main": "dist/llaminate.min.js",
7
11
  "types": "dist/llaminate.d.ts",
8
12
  "scripts": {