bun-image-turbo 1.0.2 → 1.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 +4 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -3,7 +3,11 @@
3
3
  High-performance image processing for Bun and Node.js, built with Rust and napi-rs.
4
4
 
5
5
  [![npm version](https://badge.fury.io/js/bun-image-turbo.svg)](https://www.npmjs.com/package/bun-image-turbo)
6
+ [![Build & Publish](https://github.com/nexus-aissam/bun-image-turbo/actions/workflows/build.yml/badge.svg)](https://github.com/nexus-aissam/bun-image-turbo/actions/workflows/build.yml)
6
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue.svg)](https://www.typescriptlang.org/)
9
+ [![Node.js](https://img.shields.io/badge/Node.js-18+-green.svg)](https://nodejs.org/)
10
+ [![Bun](https://img.shields.io/badge/Bun-1.0+-orange.svg)](https://bun.sh/)
7
11
 
8
12
  ## Features
9
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bun-image-turbo",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "High-performance image processing for Bun and Node.js - resize, convert, compress with WebP, AVIF, PNG, JPEG support",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -89,12 +89,12 @@
89
89
  "typescript": "^5.9.0"
90
90
  },
91
91
  "optionalDependencies": {
92
- "bun-image-turbo-darwin-arm64": "1.0.2",
93
- "bun-image-turbo-darwin-x64": "1.0.2",
94
- "bun-image-turbo-linux-arm64-gnu": "1.0.2",
95
- "bun-image-turbo-linux-x64-gnu": "1.0.2",
96
- "bun-image-turbo-linux-x64-musl": "1.0.2",
97
- "bun-image-turbo-win32-arm64-msvc": "1.0.2",
98
- "bun-image-turbo-win32-x64-msvc": "1.0.2"
92
+ "bun-image-turbo-darwin-arm64": "1.0.3",
93
+ "bun-image-turbo-darwin-x64": "1.0.3",
94
+ "bun-image-turbo-linux-arm64-gnu": "1.0.3",
95
+ "bun-image-turbo-linux-x64-gnu": "1.0.3",
96
+ "bun-image-turbo-linux-x64-musl": "1.0.3",
97
+ "bun-image-turbo-win32-arm64-msvc": "1.0.3",
98
+ "bun-image-turbo-win32-x64-msvc": "1.0.3"
99
99
  }
100
100
  }