{
  "name": "tty-window",
  "version": "0.2.0",
  "description": "This package allows you to create a fixed 'render window' in a TTY, to show status and progress info alongside spooling logs.",
  "type": "module",
  "main": "./lib/cjs/index.js",
  "module": "./lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": "./lib/index.js"
  },
  "scripts": {
    "build": "npm run clean && npm run index && npm run compile && npm run compile:cjs && npm run lint ",
    "clean": "rm -rf docs/ lib/ *.tsbuildinfo",
    "compile": "npm run index && tsc",
    "compile:cjs": "tsc -p tsconfig.cjs.json",
    "index": "node makeIndex.js src/",
    "lint": "eslint src/ --ext=ts",
    "test": "node ./lib/test/randomProgress.js && node ./lib/test/randomProgressClose.js",
    "watch:compile": "tsc --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gordonmleigh/tty-window.git"
  },
  "author": {
    "email": "gordonmleigh@gmail.com",
    "name": "Gordon Leigh"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/gordonmleigh/tty-window/issues"
  },
  "homepage": "https://github.com/gordonmleigh/tty-window#readme",
  "files": [
    "lib/**/*.js",
    "lib/**/*.d.ts",
    "lib/**/*.map",
    "!lib/**/*.test.*",
    "!lib/test",
    "src/**/*.ts",
    "!src/**/*.test.ts",
    "!src/test"
  ],
  "devDependencies": {
    "@types/lodash.throttle": "^4.1.6",
    "@types/node": "^16.11.12",
    "@typescript-eslint/eslint-plugin": "^5.25.0",
    "@typescript-eslint/parser": "^5.25.0",
    "eslint": "^8.15.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.0.0",
    "prettier": "^2.6.2",
    "typescript": "^4.5.3"
  },
  "dependencies": {
    "lodash.throttle": "^4.1.1"
  }
}
