{
    "name": "smartcard",
    "version": "3.7.2",
    "description": "PC/SC bindings for Node.js using N-API - ABI stable across Node.js versions",
    "author": "Tom KP",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/tomkp/smartcard.git"
    },
    "bugs": {
        "url": "https://github.com/tomkp/smartcard/issues"
    },
    "homepage": "https://github.com/tomkp/smartcard#readme",
    "main": "dist/lib/index.js",
    "types": "dist/lib/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/lib/index.d.ts",
            "import": "./dist/lib/index.js",
            "require": "./dist/lib/index.js"
        }
    },
    "gypfile": true,
    "scripts": {
        "install": "node-gyp rebuild",
        "build": "tsc && node-gyp rebuild",
        "build:ts": "tsc",
        "rebuild": "node-gyp rebuild",
        "clean": "rm -rf dist",
        "prepublishOnly": "npm run build",
        "test": "npm run build:ts && node --test dist/test/integration/index.js && node --test dist/test/unit/index.js",
        "test:unit": "npm run build:ts && node --test dist/test/unit/index.js",
        "test:integration": "npm run build:ts && node --test dist/test/integration/index.js",
        "test:coverage": "npm run build:ts && c8 --include=dist/lib/**/*.js node --test dist/test/unit/index.js",
        "typecheck": "tsc --noEmit",
        "coverage:report": "c8 report --reporter=text --reporter=html",
        "lint": "eslint lib test examples",
        "lint:fix": "eslint lib test examples --fix"
    },
    "files": [
        "dist/lib/",
        "src/",
        "binding.gyp",
        "README.md",
        "LICENSE"
    ],
    "dependencies": {
        "node-addon-api": "^7.0.0"
    },
    "devDependencies": {
        "@eslint/js": "^9.39.2",
        "@types/node": "^25.0.3",
        "c8": "^10.1.3",
        "eslint": "^9.39.2",
        "node-gyp": "^10.0.0",
        "typescript": "^5.7.2",
        "typescript-eslint": "^8.50.1"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "os": [
        "darwin",
        "linux",
        "win32"
    ],
    "keywords": [
        "pcsc",
        "pcsclite",
        "smartcard",
        "smart-card",
        "nfc",
        "rfid",
        "contactless",
        "napi",
        "node-addon-api",
        "acr122",
        "card-reader"
    ]
}
