{
  "name": "toolcraft",
  "version": "0.0.163",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./cli": {
      "types": "./dist/cli.d.ts",
      "import": "./dist/cli.js"
    },
    "./composition": {
      "types": "./dist/composition.d.ts",
      "import": "./dist/composition.js"
    },
    "./agent-defs": {
      "types": "./dist/agent-defs.d.ts",
      "import": "./dist/agent-defs.js"
    },
    "./agent-mcp-config": {
      "types": "./dist/agent-mcp-config.d.ts",
      "import": "./dist/agent-mcp-config.js"
    },
    "./auth-store": {
      "types": "./dist/auth-store.d.ts",
      "import": "./dist/auth-store.js"
    },
    "./config-mutations": {
      "types": "./dist/config-mutations.d.ts",
      "import": "./dist/config-mutations.js"
    },
    "./design": {
      "types": "./dist/design.d.ts",
      "import": "./dist/design.js"
    },
    "./design/render-markdown-plaintext": {
      "types": "./dist/design/render-markdown-plaintext.d.ts",
      "import": "./dist/design/render-markdown-plaintext.js"
    },
    "./design/*": {
      "types": "./dist/design/*.d.ts",
      "import": "./dist/design/*.js"
    },
    "./mcp": {
      "types": "./dist/mcp.d.ts",
      "import": "./dist/mcp.js"
    },
    "./mcp-proxy": {
      "types": "./dist/mcp-proxy.d.ts",
      "import": "./dist/mcp-proxy.js"
    },
    "./sdk": {
      "types": "./dist/sdk.d.ts",
      "import": "./dist/sdk.js"
    },
    "./schema": {
      "types": "./dist/schema.d.ts",
      "import": "./dist/schema.js"
    },
    "./human-in-loop": {
      "types": "./dist/human-in-loop/index.d.ts",
      "import": "./dist/human-in-loop/index.js"
    },
    "./http": {
      "types": "./dist/http.d.ts",
      "import": "./dist/http.js"
    },
    "./http/hosted-oauth": {
      "types": "./dist/http-hosted-oauth.d.ts",
      "import": "./dist/http-hosted-oauth.js"
    },
    "./frontmatter": {
      "types": "./dist/frontmatter.d.ts",
      "import": "./dist/frontmatter.js"
    },
    "./file-changes": {
      "types": "./dist/file-change-renderer.d.ts",
      "import": "./dist/file-change-renderer.js"
    },
    "./process-runner": {
      "types": "./dist/process-runner.d.ts",
      "import": "./dist/process-runner.js"
    },
    "./source-snippet": {
      "types": "./dist/source-snippet.d.ts",
      "import": "./dist/source-snippet.js"
    },
    "./testing": {
      "types": "./dist/testing/index.d.ts",
      "import": "./dist/testing/index.js"
    },
    "./tiny-mcp-client": {
      "types": "./dist/tiny-mcp-client.d.ts",
      "import": "./dist/tiny-mcp-client.js"
    }
  },
  "scripts": {
    "build": "rm -rf dist && tsc && cp src/composition.json dist/composition.json",
    "test": "cd ../.. && vitest run packages/toolcraft/src",
    "test:unit": "cd ../.. && vitest run packages/toolcraft/src",
    "lint": "cd ../.. && eslint packages/toolcraft/src --ext ts && tsc -p packages/toolcraft/tsconfig.json --noEmit",
    "prepack": "node ../../scripts/manage-bundled-workspace-deps.mjs prepare . toolcraft-schema toolcraft-design @poe-code/frontmatter @poe-code/agent-mcp-config @poe-code/agent-human-in-loop @poe-code/task-list @poe-code/agent-defs @poe-code/config-mutations @poe-code/user-error @poe-code/process-runner mcp-oauth-server tiny-http-mcp-server tiny-mcp-client tiny-stdio-mcp-server auth-store jose fast-string-width fast-wrap-ansi ignore jsonc-parser sisteransi smol-toml yaml",
    "postpack": "node ../../scripts/manage-bundled-workspace-deps.mjs cleanup . toolcraft-schema toolcraft-design @poe-code/frontmatter @poe-code/agent-mcp-config @poe-code/agent-human-in-loop @poe-code/task-list @poe-code/agent-defs @poe-code/config-mutations @poe-code/user-error @poe-code/process-runner mcp-oauth-server tiny-http-mcp-server tiny-mcp-client tiny-stdio-mcp-server auth-store jose fast-string-width fast-wrap-ansi ignore jsonc-parser sisteransi smol-toml yaml"
  },
  "dependencies": {
    "commander": "^13.1.0",
    "fast-string-width": "^3.0.2",
    "fast-wrap-ansi": "^0.2.0",
    "ignore": "^5.3.2",
    "jose": "^6.1.2",
    "jsonc-parser": "^3.3.1",
    "sisteransi": "^1.0.5",
    "smol-toml": "^1.3.0",
    "yaml": "^2.8.2"
  },
  "files": [
    "LICENSE",
    "composition.json",
    "dist"
  ],
  "toolcraftComposition": "./composition.json",
  "engines": {
    "node": ">=18.18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/poe-platform/poe-code.git",
    "directory": "packages/toolcraft"
  },
  "bundleDependencies": [
    "toolcraft-schema",
    "toolcraft-design",
    "@poe-code/frontmatter",
    "@poe-code/agent-mcp-config",
    "@poe-code/agent-human-in-loop",
    "@poe-code/task-list",
    "@poe-code/agent-defs",
    "@poe-code/config-mutations",
    "@poe-code/user-error",
    "@poe-code/process-runner",
    "mcp-oauth-server",
    "tiny-http-mcp-server",
    "tiny-mcp-client",
    "tiny-stdio-mcp-server",
    "auth-store",
    "jose",
    "fast-string-width",
    "fast-wrap-ansi",
    "ignore",
    "jsonc-parser",
    "sisteransi",
    "smol-toml",
    "yaml"
  ],
  "optionalDependencies": {
    "toolcraft-schema": "0.0.163",
    "toolcraft-design": "*",
    "@poe-code/frontmatter": "*",
    "@poe-code/agent-mcp-config": "*",
    "@poe-code/agent-human-in-loop": "*",
    "@poe-code/task-list": "*",
    "@poe-code/agent-defs": "*",
    "@poe-code/config-mutations": "*",
    "@poe-code/user-error": "*",
    "@poe-code/process-runner": "*",
    "mcp-oauth-server": "*",
    "tiny-http-mcp-server": "*",
    "tiny-mcp-client": "*",
    "tiny-stdio-mcp-server": "*",
    "auth-store": "*"
  }
}
