{
	"type": "module",
	"name": "@gajae-code/ai",
	"version": "0.15.2",
	"description": "Unified LLM API with automatic model discovery and provider configuration",
	"homepage": "https://gajae-code.com",
	"author": "Yeachan-Heo and Gajae Code Contributors",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Yeachan-Heo/gajae-code.git",
		"directory": "packages/ai"
	},
	"bugs": {
		"url": "https://github.com/Yeachan-Heo/gajae-code/issues"
	},
	"keywords": [
		"ai",
		"llm",
		"openai",
		"anthropic",
		"gemini",
		"unified",
		"api"
	],
	"main": "./src/index.ts",
	"types": "./dist/types/index.d.ts",
	"bin": {
		"pi-ai": "./src/cli.ts"
	},
	"scripts": {
		"check": "biome check . && bun run check:types",
		"check:types": "tsc -p tsconfig.json --noEmit",
		"lint": "biome lint .",
		"test": "bun test",
		"fix": "biome check --write --unsafe .",
		"fmt": "biome format --write .",
		"generate-models": "bun scripts/generate-models.ts"
	},
	"dependencies": {
		"@anthropic-ai/sdk": "^0.94.0",
		"@bufbuild/protobuf": "^2.12.0",
		"@gajae-code/natives": "0.15.2",
		"@gajae-code/utils": "0.15.2",
		"openai": "^6.36.0",
		"partial-json": "^0.1.7",
		"zod": "4.4.3"
	},
	"devDependencies": {
		"@types/bun": "^1.3.14"
	},
	"engines": {
		"bun": ">=1.4.0"
	},
	"files": [
		"src",
		"README.md",
		"CHANGELOG.md",
		"dist/types"
	],
	"exports": {
		"./core": {
			"types": "./dist/types/core.d.ts",
			"import": "./src/core.ts"
		},
		".": {
			"types": "./dist/types/index.d.ts",
			"import": "./src/index.ts"
		},
		"./adapter-internals/*": null,
		"./adapter-internals/*.js": null,
		"./*": {
			"types": "./dist/types/*.d.ts",
			"import": "./src/*.ts",
			"require": "./src/*.ts"
		},
		"./auth-broker": {
			"types": "./dist/types/auth-broker/index.d.ts",
			"import": "./src/auth-broker/index.ts"
		},
		"./auth-broker/*": {
			"types": "./dist/types/auth-broker/*.d.ts",
			"import": "./src/auth-broker/*.ts"
		},
		"./auth-gateway": {
			"types": "./dist/types/auth-gateway/index.d.ts",
			"import": "./src/auth-gateway/index.ts"
		},
		"./auth-gateway/*": {
			"types": "./dist/types/auth-gateway/*.d.ts",
			"import": "./src/auth-gateway/*.ts"
		},
		"./models.json": {
			"types": "./dist/types/models.json.d.d.ts",
			"import": "./src/models.json"
		},
		"./provider-models": {
			"types": "./dist/types/provider-models/index.d.ts",
			"import": "./src/provider-models/index.ts"
		},
		"./provider-models/*": {
			"types": "./dist/types/provider-models/*.d.ts",
			"import": "./src/provider-models/*.ts"
		},
		"./providers/*": {
			"types": "./dist/types/providers/*.d.ts",
			"import": "./src/providers/*.ts",
			"require": "./src/providers/*.ts"
		},
		"./providers/cursor/gen/*": {
			"types": "./dist/types/providers/cursor/gen/*.d.ts",
			"import": "./src/providers/cursor/gen/*.ts"
		},
		"./providers/openai-codex/*": {
			"types": "./dist/types/providers/openai-codex/*.d.ts",
			"import": "./src/providers/openai-codex/*.ts"
		},
		"./usage/*": {
			"types": "./dist/types/usage/*.d.ts",
			"import": "./src/usage/*.ts"
		},
		"./utils/*": {
			"types": "./dist/types/utils/*.d.ts",
			"import": "./src/utils/*.ts"
		},
		"./utils/discovery": {
			"types": "./dist/types/utils/discovery/index.d.ts",
			"import": "./src/utils/discovery/index.ts"
		},
		"./utils/discovery/*": {
			"types": "./dist/types/utils/discovery/*.d.ts",
			"import": "./src/utils/discovery/*.ts"
		},
		"./utils/oauth": {
			"types": "./dist/types/utils/oauth/index.d.ts",
			"import": "./src/utils/oauth/index.ts"
		},
		"./utils/oauth/*": {
			"types": "./dist/types/utils/oauth/*.d.ts",
			"import": "./src/utils/oauth/*.ts"
		},
		"./utils/schema": {
			"types": "./dist/types/utils/schema/index.d.ts",
			"import": "./src/utils/schema/index.ts"
		},
		"./utils/schema/*": {
			"types": "./dist/types/utils/schema/*.d.ts",
			"import": "./src/utils/schema/*.ts"
		},
		"./*.js": "./src/*.ts"
	}
}
