{
  "name": "@ade_oshineye/yaket",
  "version": "0.5.3",
  "description": "TypeScript port of the YAKE keyword extraction core pipeline",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adewale/yaket.git"
  },
  "homepage": "https://github.com/adewale/yaket#readme",
  "bugs": {
    "url": "https://github.com/adewale/yaket/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "yaket": "dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./browser": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./worker": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "benchmark": "tsx scripts/benchmark.ts",
    "benchmark:datasets": "tsx scripts/benchmark-datasets.ts",
    "check:package": "npm pack --dry-run && publint",
    "prepack": "npm run build",
    "test:cli:coverage": "vitest run --config vitest.cli-coverage.config.ts",
    "test": "vitest run",
    "test:cloudflare": "vitest run --config vitest.cloudflare.config.ts",
    "test:all": "npm test && npm run test:cloudflare",
    "test:mutation": "stryker run",
    "test:watch": "vitest",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "verify": "npm run typecheck && npm test && npm run test:cloudflare && npm run build && npm run check:package"
  },
  "keywords": [
    "yake",
    "keyword-extraction",
    "nlp",
    "typescript"
  ],
  "license": "MIT",
  "devDependencies": {
    "@stryker-mutator/core": "^9.3.0",
    "@stryker-mutator/typescript-checker": "^9.3.0",
    "@stryker-mutator/vitest-runner": "^9.3.0",
    "@cloudflare/vitest-pool-workers": "^0.14.1",
    "@cloudflare/workers-types": "^4.20260405.1",
    "@types/node": "^24.5.2",
    "@vitest/coverage-v8": "^4.1.4",
    "fast-check": "^4.3.0",
    "esbuild": "^0.28.0",
    "publint": "^0.3.15",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3",
    "vitest": "^4.1.2",
    "wrangler": "^4.80.0"
  }
}
