{
"name": "@omron-fins/native",
"version": "0.5.0",
"description": "Omron FINS protocol - Native Node.js/Bun bindings powered by Rust",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/deviagomendes/omron-fins-rs"
},
"license": "MIT",
"keywords": [
"omron",
"fins",
"plc",
"industrial",
"automation",
"native",
"rust",
"napi"
],
"author": "Iago Aquino Mendes",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/*.node"
],
"napi": {
"binaryName": "omron-fins",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu"
]
},
"engines": {
"node": ">= 18"
},
"scripts": {
"build": "napi build --platform --features napi --release dist",
"build:debug": "napi build --platform --features napi dist",
"prepublishOnly": "napi prepublish -t npm dist"
},
"devDependencies": {
"@napi-rs/cli": "^2"
}
}