{
	"name": "llm-whip",
	"version": "1.0.20",
	"author": "bewinxed",
	"repository": {
		"type": "git",
		"url": "https://github.com/bewinxed/llm-whip.git"
	},
	"main": "dist/llm-whip.js",
	"devDependencies": {
		"@biomejs/biome": "^1.9.4",
		"@types/bun": "latest",
		"@types/node": "^20.0.0"
	},
	"bin": {
		"llm-whip": "dist/llm-whip.js"
	},
	"bugs": {
		"url": "https://github.com/bewinxed/llm-whip/issues"
	},
	"description": "File monitoring tool that detects lazy patterns and anti-cheat behaviors in code and LLM conversations",
	"engines": {
		"node": ">=16.0.0",
		"bun": ">=1.0.0"
	},
	"files": [
		"dist/**/*",
		"schema.json",
		"README.md"
	],
	"homepage": "https://github.com/bewinxed/llm-whip#readme",
	"keywords": [
		"llm",
		"claude",
		"monitoring",
		"anti-cheat",
		"code-quality",
		"typescript",
		"bun"
	],
	"license": "MIT",
	"scripts": {
		"build": "bun build ./src/llm-whip.ts --outdir ./dist --target node --format esm --banner=\"#!/usr/bin/env node\" && cp ./src/types.ts ./dist/types.ts",
		"dev": "bun run src/llm-whip.ts",
		"lint": "bunx biome lint --write src/ test/",
		"test": "bun test",
		"test:watch": "bun test --watch",
		"clean": "rm -rf dist",
		"prepare": "bun run clean && bun run build",
		"prepublishOnly": "bun run prepare",
		"release": "bun run prepare && bun publish",
		"release:patch": "npm version patch --force && bun run release",
		"release:minor": "npm version minor --force && bun run release",
		"release:major": "npm version major --force && bun run release"
	},
	"type": "module",
	"types": "dist/llm-whip.d.ts",
	"exports": {
		".": "./dist/llm-whip.js",
		"./types": "./dist/types.ts"
	},
	"dependencies": {
		"@clack/prompts": "^0.11.0",
		"ignore": "^7.0.5"
	},
	"peerDependencies": {
		"typescript": "^5.8.3"
	}
}
