{
  "name": "covertable",
  "version": "3.0.0",
  "description": "Efficient TypeScript library for pairwise testing, generating minimal covering arrays with constraint support.",
  "homepage": "https://covertable.walkframe.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/walkframe/covertable.git"
  },
  "bugs": {
    "url": "https://github.com/walkframe/covertable/issues"
  },
  "keywords": [
    "allpair",
    "all-pair",
    "allpairs",
    "all-pairs",
    "pairwise",
    "N-wise",
    "2-wise",
    "3-wise",
    "two-wise",
    "three-wise",
    "N-term",
    "2-term",
    "3-term",
    "two-term",
    "three-term",
    "pairs",
    "pair",
    "combinatorial",
    "covering-array",
    "covering-arrays",
    "pict"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./pict": {
      "types": "./dist/pict.d.ts",
      "import": "./dist/pict.js",
      "require": "./dist/pict.cjs"
    },
    "./shortcuts": {
      "types": "./dist/shortcuts.d.ts",
      "import": "./dist/shortcuts.js",
      "require": "./dist/shortcuts.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "author": "righ",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^22.0.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.0",
    "vite": "^6.3.0",
    "vite-plugin-dts": "^4.5.0"
  },
  "dependencies": {},
  "scripts": {
    "test": "jest",
    "build": "vite build && tsc --emitDeclarationOnly"
  }
}