{
  "name": "node-cli",
  "version": "0.2.5",
  "description": "🖍️ Build a beautiful Node.js CLI with colors, pre-build elements and optional JSX support.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "bin": {
    "node-cli-examples": "./lib/examples/bin.js"
  },
  "scripts": {
    "examples": "node lib/examples/index.js",
    "start": "npm run dev",
    "dev": "rimraf lib && tsc --watch",
    "build": "rimraf lib && tsc",
    "format": "prettier --write src/**",
    "format:check": "prettier --check src/**",
    "lint": "eslint --fix src --ext .ts,.tsx",
    "lint:check": "eslint src --ext .ts,.tsx",
    "test": "echo \"No tests written yet.\"",
    "publish": "publish",
    "prepublishOnly": "npm run format && npm run lint && npm run build && npm run test"
  },
  "keywords": [
    "node",
    "cli",
    "terminal",
    "jsx"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yandeu/node-cli.git"
  },
  "author": "Yannick Deubel (https://github.com/yandeu)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/yandeu/node-cli/issues"
  },
  "homepage": "https://github.com/yandeu/node-cli#readme",
  "devDependencies": {
    "@types/node": "^14.14.45",
    "@yandeu/eslint-config": "^0.0.1",
    "@yandeu/prettier-config": "^0.0.1",
    "eslint": "^7.22.0",
    "prettier": "^2.2.1",
    "publish-cli": "^1.7.0",
    "rimraf": "^3.0.2",
    "typescript": "^4.2.3"
  },
  "funding": {
    "url": "https://github.com/sponsors/yandeu"
  }
}