From da600b156a51e57de58ba141bb035dc48ae427e2 Mon Sep 17 00:00:00 2001 From: Nicolas MARTEAU Date: Mon, 29 Jul 2024 20:34:01 +0200 Subject: [PATCH] chore(win32-ia32): init project --- npm/win32-ia32/README.md | 10 ++++++++++ npm/win32-ia32/package.json | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 npm/win32-ia32/README.md create mode 100644 npm/win32-ia32/package.json diff --git a/npm/win32-ia32/README.md b/npm/win32-ia32/README.md new file mode 100644 index 0000000..727e090 --- /dev/null +++ b/npm/win32-ia32/README.md @@ -0,0 +1,10 @@ +# `Compiled files for heif-converter` + +### Source +[heif-converter](https://www.npmjs.com/package/@myunisoft/heif-converter) + +### Target + +`os`: Windows +`cpu`: x86 +`compiler`: msvc \ No newline at end of file diff --git a/npm/win32-ia32/package.json b/npm/win32-ia32/package.json new file mode 100644 index 0000000..30fc029 --- /dev/null +++ b/npm/win32-ia32/package.json @@ -0,0 +1,32 @@ +{ + "name": "@myunisoft/heif-converter.win32-ia32", + "version": "0.0.1", + "description": "Prebuilt heif-converter for use with Windows x64", + "author": "Nicolas Marteau ", + "homepage": "https://github.com/MyUnisoft/heif-converter", + "repository": { + "type": "git", + "url": "git+https://github.com/MyUnisoft/heif-converter.git", + "directory": "npm/win32-ia32" + }, + "license": "MIT", + "preferUnplugged": true, + "files": [ + "lib" + ], + "publishConfig": { + "@myunisoft:registry": "https://registry.npmjs.org/" + }, + "exports": { + "./converter.node": "./lib/converter.win32-ia32.node" + }, + "engines": { + "node": ">=16.x" + }, + "os": [ + "win32" + ], + "cpu": [ + "x64" + ] +}