{
	"name": "@toddzheng024/code-eye",
	"version": "0.8.0",
	"description": "Evidence-backed AI code review with persistent findings, review coverage, and interactive diffs for pi, Claude Code, and Codex",
	"keywords": [
		"pi-package",
		"claude-code-plugin",
		"codex-plugin",
		"mcp-server"
	],
	"license": "Apache-2.0",
	"publishConfig": {
		"access": "public"
	},
	"type": "module",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/qiz029/code-eye.git"
	},
	"pi": {
		"extensions": [
			"./index.ts"
		]
	},
	"bin": {
		"code-eye-mcp": "dist/code-eye-mcp.mjs"
	},
	"files": [
		"*.ts",
		"dist",
		"plugins",
		"docs",
		".claude-plugin",
		".agents"
	],
	"dependencies": {
		"@modelcontextprotocol/sdk": "^1.29.0",
		"typebox": "^1.1.38"
	},
	"peerDependencies": {
		"@earendil-works/pi-coding-agent": "*",
		"@earendil-works/pi-tui": "*"
	},
	"devDependencies": {
		"@earendil-works/pi-coding-agent": "^0.80.7",
		"@earendil-works/pi-tui": "^0.80.7",
		"@types/node": "^26.1.1",
		"esbuild": "^0.28.1",
		"tsx": "^4.19.0",
		"typescript": "^5.9.3"
	},
	"scripts": {
		"typecheck": "tsc --noEmit",
		"test": "node --import tsx --test comments.test.ts conversations.test.ts locate.test.ts walkthrough.test.ts review-report.test.ts review-state.test.ts git-delta.test.ts web-review-page.test.ts index.test.ts package-metadata.test.ts",
		"build": "esbuild mcp-server.ts --bundle --platform=node --format=esm --target=node18 --outfile=dist/code-eye-mcp.mjs && chmod +x dist/code-eye-mcp.mjs",
		"prepublishOnly": "npm run build"
	}
}
