{
  "name": "@ironclad/rivet-core",
  "license": "MIT",
  "repository": "https://github.com/ironclad/rivet",
  "version": "1.25.0",
  "packageManager": "yarn@3.5.0",
  "main": "dist/cjs/bundle.cjs",
  "module": "dist/esm/index.js",
  "src": "src/index.ts",
  "type": "module",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "node": {
        "types": "./dist/types/index.d.ts",
        "import": "./dist/esm/index.js",
        "require": "./dist/cjs/bundle.cjs"
      },
      "browser": {
        "types": "./dist/types/index.d.ts",
        "import": "./dist/esm/index.js",
        "require": "./dist/cjs/bundle.cjs"
      },
      "default": {
        "types": "./dist/types/index.d.ts",
        "import": "./dist/esm/index.js",
        "require": "./dist/cjs/bundle.cjs"
      }
    }
  },
  "files": [
    "dist/cjs/**",
    "dist/esm/**",
    "dist/types/**"
  ],
  "scripts": {
    "build": "yarn build:esm && yarn build:cjs",
    "build:esm": "rimraf dist/esm dist/types dist/tsconfig.tsbuildinfo && tsc -b --verbose",
    "build:cjs": "rimraf dist/cjs && tsx bundle.esbuild.ts",
    "prepack": "yarn build && cp -r ../../LICENSE ../../README.md .",
    "publish": "yarn npm publish --access public",
    "lint": "eslint ./src",
    "test": "tsx --test test/**/*.test.ts",
    "watch": "tsc -b -w"
  },
  "dependencies": {
    "@gentrace/core": "^2.2.5",
    "@google-cloud/vertexai": "^0.1.3",
    "@google/genai": "^0.12.0",
    "@huggingface/inference": "^2.6.4",
    "@sindresorhus/fnv1a": "^3.1.0",
    "assemblyai": "^4.6.0",
    "autoevals": "^0.0.26",
    "cron-parser": "^4.9.0",
    "crypto-js": "^4.2.0",
    "emittery": "^1.0.1",
    "emittery-0-13": "npm:emittery@^0.13.1",
    "gpt-tokenizer": "^2.1.2",
    "json-stream-es": "^1.2.1",
    "jsonpath-plus": "^10.2.0",
    "lodash-es": "^4.17.21",
    "mdast-util-gfm-table": "^2.0.0",
    "mdast-util-to-markdown": "^2.1.2",
    "minimatch": "^9.0.3",
    "nanoid": "^3.3.6",
    "openai": "^4.28.4",
    "p-queue": "^7.4.1",
    "p-queue-6": "npm:p-queue@^6.0.0",
    "p-retry": "^6.1.0",
    "p-retry-4": "npm:p-retry@^4.0.0",
    "safe-stable-stringify": "^2.4.3",
    "ts-dedent": "^2.2.0",
    "ts-pattern": "^5.6.2",
    "type-fest": "^4.34.1",
    "yaml": "^2.3.3"
  },
  "devDependencies": {
    "@swc/core": "^1.3.94",
    "@types/crypto-js": "^4.1.3",
    "@types/eslint": "^8.44.6",
    "@types/jsonpath-plus": "^5.0.4",
    "@types/lodash": "^4.14.200",
    "@types/lodash-es": "^4.17.10",
    "@types/yaml": "^1.9.7",
    "@typescript-eslint/eslint-plugin": "^8.24.0",
    "@typescript-eslint/parser": "^8.24.0",
    "esbuild": "^0.19.5",
    "eslint": "^9.20.1",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-n": "^16.2.0",
    "eslint-plugin-promise": "^6.1.1",
    "lodash": "^4.17.21",
    "prettier": "^3.2.5",
    "rimraf": "^5.0.5",
    "ts-node": "^10.9.1",
    "tsx": "^4.6.2",
    "typescript": "^5.7.3"
  },
  "volta": {
    "node": "20.4.0"
  }
}