{
  "name": "shortwords",
  "version": "0.3.0",
  "description": "This library generates pronounceable sets of 2, 3, and 4-letter English words based on a given pattern.",
  "author": "Timothy T. Joe <timtjoe@gmail.com>",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "bin": {
    "shortwords": "./dist/bin/cli.js"
  },
  "imports": {
    "#src/*": "./dist/*"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE.md"
  ],
  "homepage": "https://github.com/timtjoe/shortwords#readme",
  "bugs": {
    "url": "https://github.com/timtjoe/shortwords/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/timtjoe/shortwords.git"
  },
  "engines": {
    "node": ">=18",
    "npm": ">=9"
  },
  "scripts": {
    "build": "tsc --build --force",
    "prepack": "npm run build",
    "pack": "npm pack",
    "test": "vitest run",
    "test:types": "vitest --typecheck",
    "format": "prettier --write .",
    "lint": "prettier --check .",
    "knip": "knip",
    "release:patch": "npm version patch -m \"Release %s\" && npm publish --access public",
    "release:minor": "npm version minor -m \"Release %s\" && npm publish --access public",
    "release:major": "npm version major -m \"Release %s\" && npm publish --access public"
  },
  "keywords": [
    "word generator",
    "short words",
    "english words",
    "word pattern"
  ],
  "devDependencies": {
    "@types/node": "^26.1.1",
    "knip": "^6.27.0",
    "prettier": "^3.9.4",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  }
}
