UNPKG

lightningimg

Version:

A blazing fast, transparent, and safe image converter powered by WebAssembly. Convert PNG, JPG, TIFF, and GIF images to optimized WebP format with high performance and cross-platform compatibility.

38 lines 1.27 kB
{ "name": "lightningimg", "version": "1.0.3", "type": "module", "description": "A blazing fast, transparent, and safe image converter powered by WebAssembly. Convert PNG, JPG, TIFF, and GIF images to optimized WebP format with high performance and cross-platform compatibility.", "main": "index.js", "types": "index.d.ts", "keywords": [ "PNG", "JPG", "GIF", "WebP", "TIFF", "WASM", "image", "converter" ], "license": "MIT", "author": "Aron Homberg <info@aron-homberg.de>", "repository": "https://github.com/kyr0/lightningimg", "devDependencies": { "http-server": "^14.1.1", "puppeteer": "^24.9.0" }, "scripts": { "prebuild": "pnpm install:deps", "build": "cd lightningimg-wasm && pnpm run build:all", "clean": "cd lightningimg-wasm && pnpm run clean", "test": "pnpm run test:esm && pnpm run test:browser && pnpm example:simple", "test:browser": "node test-browser-puppeteer.js", "test:esm": "node test-esm.js", "test:performance": "node test-performance.js", "test:performance:multi": "node test-performance-multiformat.js", "example:simple": "node example-simple.js", "install:deps": "cd lightningimg-wasm && pnpm install", "release": "sh release.sh" } }