{
  "name": "pompoms",
  "version": "3.3.1",
  "description": "The pretty & simple terminal Pomodoro timer.",
  "exports": "./src/index.ts",
  "scripts": {
    "dev": "NODE_ENV=development tsnd --respawn --transpile-only src/index.ts",
    "start": "node build/index.js",
    "build": "tsc --build",
    "clean": "rm -rf ./build",
    "deploy": "npm run build && npm run start",
    "preversion": "npm run clean",
    "version": "npm run build && git add .",
    "postversion": "git push"
  },
  "bin": "./build/index.js",
  "keywords": [
    "Pomodoro",
    "Timer",
    "Motivation",
    "Working",
    "Terminal"
  ],
  "author": "Jack Bizzell",
  "license": "ISC",
  "files": [
    "build"
  ],
  "dependencies": {
    "chalk": "4.1.2",
    "cli-progress": "^3.10.0",
    "inquirer": "^8.2.0",
    "node-emoji": "^1.11.0",
    "node-notifier": "^10.0.1"
  },
  "devDependencies": {
    "@types/cli-progress": "^3.9.2",
    "@types/inquirer": "^8.2.0",
    "@types/node-emoji": "^1.8.1",
    "@types/node-notifier": "^8.0.2",
    "ts-node": "^10.5.0",
    "ts-node-dev": "^1.1.8",
    "typescript": "^4.5.4"
  }
}
