{
  "name": "knowmax-quest-utils",
  "version": "3.7.0-beta.1",
  "description": "Utilities for creating a Knowmax Quest client.",
  "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",
    "utils"
  ],
  "author": "Knowmax BV",
  "license": "MIT",
  "devDependencies": {
    "@jest/globals": "^30.0.0",
    "jest": "^30.0.0",
    "rimraf": "6.0.1",
    "ts-jest": "^29.4.0",
    "ts-node": "^10.9.2",
    "typescript": "5.8.3"
  },
  "dependencies": {
    "knowmax-quest-types": "3.0.0"
  }
}
