{ "name": "@anthropic-ai/foundry-sdk", "version": "0.2.3", "description": "The official TypeScript library for the Anthropic Foundry API", "author": "Anthropic ", "types": "./index.d.ts", "main": "./index.js", "type": "commonjs", "repository": "github:anthropics/anthropic-sdk-typescript", "license": "MIT", "packageManager": "yarn@1.22.21", "private": false, "publishConfig": { "access": "public" }, "scripts": { "test": "jest", "build": "bash ./build", "format": "prettier --write --cache --cache-strategy metadata . !dist", "tsn": "ts-node -r tsconfig-paths/register", "lint": "eslint --ext ts,js .", "fix": "eslint --fix --ext ts,js ." }, "dependencies": { "@anthropic-ai/sdk": ">=0.50.3 <1" }, "imports": { "@anthropic-ai/foundry-sdk": ".", "@anthropic-ai/foundry-sdk/*": "./src/*" }, "exports": { ".": { "require": { "types": "./index.d.ts", "default": "./index.js" }, "types": "./index.d.mts", "default": "./index.mjs" }, "./.github/*.mjs": { "default": "./.github/*.mjs" }, "./.github/*.js": { "default": "./.github/*.js" }, "./.github/*": { "import": "./.github/*.mjs", "require": "./.github/*.js" }, "./client": { "import": "./client.mjs", "require": "./client.js" }, "./client.js": { "default": "./client.js" }, "./client.mjs": { "default": "./client.mjs" }, "./core/*.mjs": { "default": "./core/*.mjs" }, "./core/*.js": { "default": "./core/*.js" }, "./core/*": { "import": "./core/*.mjs", "require": "./core/*.js" }, "./index": { "import": "./index.mjs", "require": "./index.js" }, "./index.js": { "default": "./index.js" }, "./index.mjs": { "default": "./index.mjs" } } }