llm-messages 0.5.2 → 0.5.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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.5.3] - 2026-06-29
10
+
11
+ ### Fixed
12
+
13
+ - The npm package page showed a broken "resource not found" downloads badge after the self-hosted badge JSON was removed. The README now uses shields.io's native `npm/dm` badge, which renders the live download count directly on npm.
14
+
9
15
  ## [0.5.2] - 2026-06-12
10
16
 
11
17
  ### Summary
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # llm-messages
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/llm-messages.svg)](https://www.npmjs.com/package/llm-messages)
4
- [![npm downloads](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fslegarraga%2Fllm-messages%2Fmain%2Fbadges%2Fnpm-downloads%2Fllm-messages.json)](https://www.npmjs.com/package/llm-messages)
4
+ [![npm downloads](https://img.shields.io/npm/dm/llm-messages?logo=npm&label=downloads)](https://www.npmjs.com/package/llm-messages)
5
5
  [![CI](https://github.com/slegarraga/llm-messages/actions/workflows/ci.yml/badge.svg)](https://github.com/slegarraga/llm-messages/actions/workflows/ci.yml)
6
6
  [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/slegarraga/llm-messages/badge)](https://scorecard.dev/viewer/?uri=github.com/slegarraga/llm-messages)
7
7
  [![license](https://img.shields.io/npm/l/llm-messages.svg)](./LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-messages",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Convert chat conversations and responses between OpenAI, Anthropic and Gemini. Tool calls, images, audio, documents and roles handled. Zero dependencies.",
5
5
  "keywords": [
6
6
  "openai",
@@ -80,9 +80,7 @@
80
80
  "format": "prettier --write .",
81
81
  "format:check": "prettier --check .",
82
82
  "prepublishOnly": "npm run check",
83
- "prepare": "npm run build",
84
- "badges:downloads": "node scripts/update-download-badge.mjs",
85
- "badges:downloads:check": "node scripts/update-download-badge.mjs --check"
83
+ "prepare": "npm run build"
86
84
  },
87
85
  "devDependencies": {
88
86
  "@eslint/js": "^10.0.1",