{
	"name": "opencode-image-compress",
	"version": "0.3.2",
	"description": "Automatically compresses images before sending to AI providers to avoid size limits",
	"keywords": [
		"anthropic",
		"compress",
		"compression",
		"image",
		"images",
		"opencode",
		"opencode-plugin",
		"plugin"
	],
	"homepage": "https://github.com/kynnyhsap/opencode-image-compress",
	"bugs": {
		"url": "https://github.com/kynnyhsap/opencode-image-compress/issues"
	},
	"license": "MIT",
	"author": "Andrew Pashynnyk",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/kynnyhsap/opencode-image-compress.git"
	},
	"files": [
		"src"
	],
	"type": "module",
	"main": "src/index.ts",
	"exports": {
		".": "./src/index.ts"
	},
	"scripts": {
		"dev": "bun run dev.ts",
		"fmt": "oxfmt . --write",
		"fmt:check": "oxfmt . --check",
		"lint": "oxlint src/ tests/ dev.ts",
		"lint:fix": "oxlint src/ tests/ dev.ts --fix",
		"check": "bun fmt && bun lint && bun typecheck && bun test:unit",
		"typecheck": "tsc --noEmit",
		"test:unit": "bun test tests/unit",
		"test:e2e": "E2E_TESTS=1 bun test tests/e2e",
		"test": "bun test"
	},
	"dependencies": {
		"@opencode-ai/plugin": "^1.1.51",
		"@opencode-ai/sdk": "^1.1.51",
		"sharp": "^0.33.5"
	},
	"devDependencies": {
		"@types/bun": "^1.3.8",
		"oxfmt": "^0.27.0",
		"oxlint": "^1.42.0",
		"typescript": "^5.7.2"
	}
}
