{
  "name": "wordle-shell",
  "version": "1.0.4",
  "description": "A Wordle for the command line",
  "main": "dist/index.js",
  "bin": "dist/index.js",
  "types": "index.d.ts",
  "keywords": [
    "Wordle",
    "Letreco",
    "Termo"
  ],
  "author": "FQA",
  "license": "MIT",
  "devDependencies": {
    "@tsconfig/node16": "^1.0.2",
    "@types/inquirer": "^8.2.0",
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.21",
    "@types/seedrandom": "^3.0.2",
    "jest": "^27.5.1",
    "node-notifier": "^10.0.1",
    "ts-jest": "^27.1.3",
    "ts-node": "^10.6.0",
    "ts-node-dev": "^1.1.8",
    "typescript": "^4.6.2"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "verbose": true
  },
  "dependencies": {
    "chalk": "4.1.2",
    "inquirer": "^8.2.0",
    "seedrandom": "^3.0.5"
  },
  "scripts": {
    "dev": "ts-node-dev --respawn src/index.ts",
    "test": "jest --notify",
    "prepublish": "pnpm build",
    "build": "tsc",
    "start": "pnpm build && node dist/index.js"
  }
}