{
  "name": "nba-tipoff",
  "version": "1.0.2",
  "description": "A command-line interface for following live NBA games in your terminal",
  "main": "src/main.js",
  "bin": {
    "nba-tipoff": "./bin/tipoff"
  },
  "scripts": {
    "start": "node src/main.js",
    "dev": "node src/main.js",
    "build": "npm run lint && npm run test:run",
    "build:prod": "npm run build && npm run package",
    "package": "npm pack",
    "test": "jest --passWithNoTests",
    "test:run": "jest --passWithNoTests",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.{js,jsx}",
    "lint:fix": "eslint src/**/*.{js,jsx} --fix",
    "clean": "rm -rf node_modules package-lock.json",
    "reinstall": "npm run clean && npm install",
    "prepublishOnly": "npm run build:prod",
    "postinstall": "echo 'nba-tipoff installed successfully! Run \"nba-tipoff --help\" to get started.'",
    "cli": "node bin/tipoff",
    "cli:help": "node bin/tipoff --help",
    "cli:config": "node bin/tipoff config show",
    "verify": "node bin/tipoff --version && echo 'Installation verified successfully!'"
  },
  "keywords": [
    "nba",
    "terminal",
    "cli",
    "basketball",
    "sports",
    "react",
    "blessed",
    "live-scores"
  ],
  "author": "rfwilliams11",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/rfwilliams11/tipoff.git"
  },
  "bugs": {
    "url": "https://github.com/rfwilliams11/tipoff/issues"
  },
  "homepage": "https://github.com/rfwilliams11/tipoff#readme",
  "dependencies": {
    "@reduxjs/toolkit": "^2.0.1",
    "axios": "^1.6.2",
    "blessed": "^0.1.81",
    "commander": "^11.1.0",
    "date-fns": "^3.0.6",
    "raf": "^3.4.1",
    "react": "^17.0.2",
    "react-blessed": "^0.7.2",
    "react-redux": "7.2.6"
  },
  "devDependencies": {
    "@babel/core": "^7.28.4",
    "@babel/plugin-transform-modules-commonjs": "^7.27.1",
    "@babel/preset-env": "^7.28.3",
    "@babel/preset-react": "^7.27.1",
    "@testing-library/jest-dom": "^6.1.5",
    "@testing-library/react": "^12.1.5",
    "babel-jest": "^30.2.0",
    "eslint": "^9.37.0",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^7.0.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^30.2.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "bin/",
    "src/",
    "config/",
    "README.md",
    "LICENSE"
  ],
  "preferGlobal": true
}
