{
  "name": "@nsis/dent-cli",
  "version": "0.9.7",
  "description": "An opinionated code formatter for NSIS scripts",
  "license": "MIT",
  "files": [
    "bin/",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "bin": {
    "dent": "./bin/cli.mjs"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/idleberg/nsis-javascript-tools.git"
  },
  "homepage": "https://github.com/idleberg/nsis-javascript-tools/tree/main/packages/dent-cli#readme",
  "keywords": [
    "nsis",
    "formatter"
  ],
  "dependencies": {
    "commander": "^15.0.0",
    "consola": "^3.4.2",
    "kleur": "^4.1.5",
    "@nsis/dent": "0.13.0"
  },
  "devDependencies": {
    "vitest": "^4.1.9"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
    "lint:biome": "biome check",
    "lint:biome:ci": "biome ci",
    "lint:e18e": "e18e-cli analyze --log-level error",
    "publish:jsr": "deno publish",
    "publish:npm": "np",
    "start": "npm run build -- --watch",
    "test": "vitest run"
  }
}