{
  "name": "makensis",
  "version": "3.0.5",
  "description": "A TypeScript wrapper for makensis, the NSIS compiler",
  "type": "module",
  "module": "./dist/makensis.mjs",
  "types": "./dist/makensis.d.mts",
  "exports": {
    ".": {
      "types": "./dist/makensis.d.mts",
      "import": "./dist/makensis.mjs"
    }
  },
  "files": [
    "dist/",
    "LICENSE",
    "README.md"
  ],
  "engines": {
    "node": "^18.0.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/idleberg/node-makensis.git"
  },
  "keywords": [
    "nsis",
    "makensis"
  ],
  "license": "MIT",
  "dependencies": {
    "@nsis/language-data": "^0.11.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.5.0",
    "@commitlint/config-conventional": "^20.5.0",
    "@idleberg/configs": "^0.4.2",
    "@types/node": "^24.12.2",
    "@types/which": "^3.0.4",
    "concurrently": "^9.2.1",
    "jsr": "^0.14.3",
    "np": "^11.0.3",
    "rimraf": "^6.1.3",
    "tsdown": "^0.21.7",
    "tslib": "^2.8.1",
    "tsm": "^2.3.0",
    "typescript": "^6.0.2",
    "uvu": "^0.5.6",
    "which": "^6.0.1"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "npm run build -- --watch",
    "lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
    "lint:biome": "biome check",
    "lint:e18e": "e18e-cli analyze",
    "publish:jsr": "jsr publish",
    "publish:npm": "np",
    "test": "uvu tests -r tsm --ignore shared.ts"
  }
}