{
  "name": "infermap",
  "version": "0.6.0",
  "description": "Schema-to-schema field mapping engine. TypeScript port of the infermap Python library.",
  "keywords": [
    "schema",
    "mapping",
    "schema-mapping",
    "schema-matching",
    "etl",
    "data-integration",
    "field-mapping",
    "column-mapping",
    "infermap",
    "next.js",
    "edge",
    "golden-suite"
  ],
  "license": "MIT",
  "author": "Ben Severn (https://bensevern.dev)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/benseverndev-oss/goldenmatch.git",
    "directory": "packages/typescript/infermap"
  },
  "homepage": "https://github.com/benseverndev-oss/goldenmatch/tree/main/packages/typescript/infermap",
  "bugs": {
    "url": "https://github.com/benseverndev-oss/goldenmatch/issues"
  },
  "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"
    },
    "./core": {
      "types": "./dist/core/index.d.ts",
      "import": "./dist/core/index.js",
      "require": "./dist/core/index.cjs"
    },
    "./node": {
      "types": "./dist/node/index.d.ts",
      "import": "./dist/node/index.js",
      "require": "./dist/node/index.cjs"
    }
  },
  "bin": {
    "infermap": "./dist/cli.cjs",
    "infermap-mcp": "./dist/node/mcp/server.cjs"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20"
  },
  "peerDependencies": {
    "better-sqlite3": "*",
    "pg": "*",
    "@duckdb/node-api": "*"
  },
  "peerDependenciesMeta": {
    "better-sqlite3": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "@duckdb/node-api": {
      "optional": true
    }
  },
  "dependencies": {
    "goldencheck-types": "^0.2.0"
  },
  "devDependencies": {
    "@types/node": "^25.9.5",
    "rimraf": "^6.1.3",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10",
    "goldenmatch-wasm-runtime": "^0.1.0",
    "goldenmatch": "1.4.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit",
    "clean": "rimraf dist"
  }
}