{
  "name": "@agentic/platform-core",
  "version": "8.4.4",
  "description": "Core utilities shared across the Agentic platform.",
  "author": "Travis Fischer <travis@transitivebullsh.it>",
  "license": "AGPL-3.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/transitive-bullshit/agentic.git",
    "directory": "packages/core"
  },
  "engines": {
    "node": ">=18"
  },
  "type": "module",
  "sideEffects": false,
  "source": "./src/index.ts",
  "types": "./dist/index.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "dependencies": {
    "@sindresorhus/slugify": "^2.2.1",
    "decircular": "^1.0.0",
    "is-obj": "^3.0.0",
    "ohash": "^2.0.11",
    "parse-json": "^8.3.0",
    "sort-keys": "^5.1.0",
    "type-fest": "^4.41.0",
    "zod": "^3.25.67",
    "zod-validation-error": "4.0.0-beta.1"
  },
  "publishConfig": {
    "access": "public",
    "files": [
      "dist"
    ]
  },
  "scripts": {
    "build": "tsup",
    "clean": "del dist",
    "test": "run-s test:*",
    "test:typecheck": "tsc --noEmit",
    "test:unit": "vitest run"
  }
}