{
  "name": "@sap-ai-sdk/document-grounding",
  "version": "2.12.0",
  "description": "",
  "license": "Apache-2.0",
  "keywords": [
    "sap-ai-sdk",
    "document-grounding",
    "rag",
    "grounding",
    "vector"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/SAP/ai-sdk-js",
    "directory": "packages/document-grounding"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./internal.js": {
      "types": "./dist/internal.d.ts",
      "default": "./dist/internal.js"
    }
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.js.map",
    "dist/**/*.d.ts",
    "dist/**/*.d.ts.map"
  ],
  "dependencies": {
    "@sap-ai-sdk/core": "^2.12.0"
  },
  "scripts": {
    "compile": "tsc",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest",
    "lint": "eslint . && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -c",
    "lint:fix": "eslint . --fix && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -w --log-level error",
    "generate": "openapi-generator --generateESM --clearOutputDir -i ./src/spec/api.yaml -o ./src/client -s ./src/spec/options-per-service.json && pnpm update-imports && pnpm lint:fix",
    "update-imports": "tsx ../../scripts/update-imports.ts ./src/client/api",
    "apply-patches": "tsx ../../scripts/apply-patches.ts ."
  }
}