{
  "name": "@agentick/sandbox",
  "version": "0.15.3",
  "description": "Sandbox primitive layer for Agentick — types, context, component, and pre-built tools",
  "keywords": [
    "agent",
    "ai",
    "sandbox"
  ],
  "license": "MIT",
  "author": "Ryan Lindgren",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agenticklabs/agentick.git",
    "directory": "packages/sandbox"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "typesVersions": {
    "*": {
      "testing": [
        "dist/testing.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js",
      "default": "./dist/testing.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "diff": "^8.0.3",
    "react": "^19.0.0",
    "zod": "^4.3.6",
    "@agentick/core": "0.15.3"
  },
  "devDependencies": {
    "@types/diff": "^8.0.0",
    "@types/react": "^19.2.13",
    "typescript": "^5.7.3",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.build.json --noEmit",
    "lint": "oxlint src/",
    "format:check": "oxfmt --check src/",
    "clean": "rm -rf dist tsconfig.build.tsbuildinfo",
    "dev": "tsc --watch"
  },
  "types": "./dist/index.d.ts"
}