{
  "name": "@cloudflare/shell",
  "version": "0.4.1",
  "description": "Experimental sandboxed JS execution and filesystem runtime for Cloudflare Workers agents",
  "repository": {
    "directory": "packages/shell",
    "type": "git",
    "url": "git+https://github.com/cloudflare/agents.git"
  },
  "bugs": {
    "url": "https://github.com/cloudflare/agents/issues"
  },
  "dependencies": {
    "@cloudflare/codemode": "^0.4.2",
    "isomorphic-git": "^1.38.5"
  },
  "devDependencies": {
    "@cloudflare/vitest-pool-workers": "^0.16.20",
    "vitest": "4.1.9"
  },
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./workers": {
      "types": "./dist/workers.d.ts",
      "import": "./dist/workers.js",
      "require": "./dist/workers.js"
    },
    "./git": {
      "types": "./dist/git/index.d.ts",
      "import": "./dist/git/index.js",
      "require": "./dist/git/index.js"
    }
  },
  "keywords": [
    "cloudflare",
    "agents",
    "sandbox",
    "filesystem",
    "shell",
    "isolate"
  ],
  "author": "Cloudflare Inc.",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist",
    "docs",
    "README.md"
  ],
  "nx": {
    "targets": {
      "build": {
        "inputs": [
          "production",
          "^production",
          "{workspaceRoot}/docs/shell/**/*",
          "{workspaceRoot}/scripts/copy-package-docs.ts"
        ],
        "outputs": [
          "{projectRoot}/dist",
          "{projectRoot}/docs"
        ]
      }
    }
  },
  "scripts": {
    "build": "tsx ./scripts/build.ts",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}