{
  "name": "neo-neo-bblessed",
  "description": "A fork of neo-blessed (which is a fork of blessed) with bug fixes and maintenance.",
  "author": "Christopher Jeffrey",
  "contributors": [
    {
      "name": "Iuri Matias",
      "email": "iuri.matias@gmail.com"
    },
    {
      "name": "Eirik Brandtzæg",
      "email": "eirikb@eirikb.no"
    }
  ],
  "scripts": {
    "build": "tsup",
    "build:prod": "NODE_ENV=production tsup",
    "build:dev": "tsup --minify=false",
    "build:watch": "tsup --watch",
    "build:tsc": "tsc",
    "build:tests": "esbuild test/*.ts --outdir=test-dist --format=cjs --target=es2018",
    "type-check": "echo 'TypeScript type checking limited to colors.ts and unicode.ts due to legacy codebase complexity' && tsc --noEmit",
    "type-check:strict": "tsc --project tsconfig.strict.json --noEmit",
    "lint": "eslint lib/",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest run --config vitest.config.mjs",
    "test:watch": "vitest --config vitest.config.mjs",
    "test:integration": "tsx test-runner.ts",
    "check": "npm run build && npm run type-check && npm run lint && npm run format:check && npm test",
    "check:fix": "npm run build && npm run type-check && npm run format && npm test",
    "prepare": "husky"
  },
  "version": "1.0.9",
  "license": "MIT",
  "main": "./dist/blessed.js",
  "module": "./dist/blessed.mjs",
  "types": "./dist/blessed.d.ts",
  "exports": {
    ".": {
      "types": "./dist/blessed.d.ts",
      "import": "./dist/blessed.mjs",
      "require": "./dist/blessed.js"
    }
  },
  "bin": "./bin/tput.ts",
  "preferGlobal": false,
  "repository": {
    "type": "git",
    "url": "git://github.com/MrLesk/neo-neo-blessed.git"
  },
  "homepage": "https://github.com/MrLesk/neo-neo-blessed",
  "bugs": {
    "url": "https://github.com/MrLesk/neo-neo-blessed/issues"
  },
  "keywords": [
    "curses",
    "tui",
    "tput",
    "terminfo",
    "termcap"
  ],
  "tags": [
    "curses",
    "tui",
    "tput",
    "terminfo",
    "termcap"
  ],
  "engines": {
    "node": ">= 18.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.0.3",
    "@types/pngjs": "^6.0.5",
    "@typescript-eslint/eslint-plugin": "^8.34.1",
    "@typescript-eslint/parser": "^8.34.1",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "esbuild": "^0.25.5",
    "eslint": "^9.29.0",
    "glob": "^11.0.3",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.2",
    "prettier": "^3.5.3",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.0",
    "tsx": "^4.20.3",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "@xterm/headless": "^5.5.0",
    "crc-32": "^1.2.2",
    "eastasianwidth": "^0.3.0",
    "jimp": "^1.6.0",
    "pngjs": "^7.0.0",
    "unicode-properties": "^1.4.1"
  },
  "peerDependencies": {
    "node-pty": "^1.0.0"
  },
  "peerDependenciesMeta": {
    "node-pty": {
      "optional": true
    }
  },
  "lint-staged": {
    "*.{js,ts,tsx,json,md}": [
      "prettier --write"
    ]
  }
}
