{
  "name": "sandlot",
  "version": "0.2.4",
  "description": "TypeScript sandbox with esbuild bundling and type checking for browser and server",
  "author": "blindmansion",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/blindmansion/sandlot.git",
    "directory": "packages/sandlot"
  },
  "license": "MIT",
  "keywords": [
    "sandbox",
    "typescript",
    "esbuild",
    "browser",
    "bundler",
    "playground",
    "agent"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./browser": {
      "types": "./dist/browser/index.d.ts",
      "import": "./dist/browser/index.js",
      "default": "./dist/browser/index.js"
    },
    "./node": {
      "types": "./dist/node/index.d.ts",
      "import": "./dist/node/index.js",
      "default": "./dist/node/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "bun run build:js && bun run build:types",
    "build:js": "bun build ./src/index.ts ./src/browser/index.ts ./src/node/index.ts --outdir ./dist --format esm --packages external",
    "build:types": "tsc --emitDeclarationOnly",
    "prepublishOnly": "bun run build"
  },
  "dependencies": {
    "esbuild-wasm": "^0.27.2",
    "just-bash": "^2.6.0",
    "tailwindcss-iso": "^1.0.6",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "esbuild": ">=0.20.0",
    "tailwindcss": "^3.0.0 || ^4.0.0"
  },
  "peerDependenciesMeta": {
    "esbuild": {
      "optional": true
    },
    "tailwindcss": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/react": "^19",
    "esbuild": "^0.27.2"
  }
}
