{
  "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": "npm run build:esbuild",
    "build:esbuild": "esbuild lib/*.ts lib/widgets/*.ts --outdir=dist --format=cjs --target=es2018 --sourcemap --minify",
    "build:dev": "esbuild lib/*.ts lib/widgets/*.ts --outdir=dist --format=cjs --target=es2018 --sourcemap",
    "build:tsc": "tsc",
    "build-watch": "tsc --watch",
    "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",
    "lint": "eslint lib/",
    "test": "tsx test-runner.ts",
    "test:fast": "./run-fast-tests.sh",
    "dev": "tsx",
    "prepare": "husky"
  },
  "version": "1.0.3",
  "license": "MIT",
  "main": "./index.js",
  "types": "./index.d.ts",
  "bin": "./bin/tput.js",
  "preferGlobal": false,
  "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": ">= 8.0.0"
  },
  "browserify": {
    "transform": [
      "./browser/transform.js"
    ]
  },
  "devDependencies": {
    "@types/node": "^24.0.3",
    "@typescript-eslint/eslint-plugin": "^8.34.1",
    "@typescript-eslint/parser": "^8.34.1",
    "esbuild": "^0.25.5",
    "eslint": "^8.57.1",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.2",
    "prettier": "^3.5.3",
    "ts-node": "^10.9.2",
    "tsx": "^4.20.3",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "term.js": "0.0.7"
  },
  "peerDependencies": {
    "node-pty": "^1.1.0"
  },
  "peerDependenciesMeta": {
    "node-pty": {
      "optional": true
    }
  },
  "lint-staged": {
    "*.{js,ts,tsx,json,md}": [
      "prettier --write"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/MrLesk/neo-neo-blessed.git"
  }
}
