{
  "name": "knowmax-quest-types",
  "version": "3.9.1",
  "description": "Contains type definitions for communicating with Knowmax Quest.",
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "scripts": {
    "build": "rimraf ./dist && npm run build:types && npm run build:cjs && npm run build:esm && npm run postbuild",
    "build:types": "tsc --project tsconfig.types.json",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "build:esm": "tsc --project tsconfig.esm.json",
    "postbuild": "echo {\"type\":\"commonjs\"} > dist/cjs/package.json",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "knowmax",
    "quest"
  ],
  "author": "Knowmax BV",
  "license": "MIT",
  "devDependencies": {
    "@jest/globals": "^30.4.1",
    "jest": "^30.4.2",
    "rimraf": "6.1.3",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.2",
    "typescript": "5.9.3"
  }
}