{
  "name": "puzlink",
  "version": "0.2.0",
  "description": "Tool to find patterns among sets of words",
  "keywords": [
    "puzzles"
  ],
  "homepage": "https://github.com/cjquines/puzlink.js#readme",
  "bugs": {
    "url": "https://github.com/cjquines/puzlink.js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cjquines/puzlink.js.git"
  },
  "license": "MIT",
  "author": "CJ Quines <cj@cjquines.com>",
  "type": "module",
  "imports": {
    "#download": {
      "node": "./src/download.node.ts",
      "default": "./src/download.ts"
    }
  },
  "exports": {
    ".": "./dist/index.js",
    "./parse": "./dist/parse.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "src/**/*",
    "!src/**/*.test.ts",
    "!src/data/hypernyms/*.txt"
  ],
  "scripts": {
    "build:cache": "tsx scripts/buildCache.ts",
    "build:categories": "tsx scripts/buildCategories.ts",
    "build:hypernyms": "tsx scripts/buildHypernyms.ts",
    "build:tsc": "tsc --build tsconfig.build.json",
    "format": "prettier --write .",
    "lint": "eslint",
    "test": "vitest run",
    "test:evals": "tsx scripts/runEvals.ts",
    "test:slow": "SLOW_TESTS=true vitest run",
    "test:watch": "vitest watch",
    "typecheck": "tsc --build tsconfig.json"
  },
  "dependencies": {
    "cromulence": "^0.5.0",
    "simple-statistics": "^7.8.8"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/node": "^24.0.15",
    "@vitest/eslint-plugin": "^1.6.4",
    "chalk": "^5.6.2",
    "chokidar": "^5.0.0",
    "eslint": "^9.39.2",
    "gzip-size": "^7.0.0",
    "iso-3166": "^4.4.0",
    "meow": "^14.0.0",
    "prettier": "^3.7.4",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.50.0",
    "vitest": "^4.0.16"
  }
}
