{
	"name": "@mariozechner/claude-trace",
	"version": "1.0.9",
	"description": "Record all your interactions with Claude Code as you develop your projects",
	"main": "dist/index.js",
	"bin": {
		"claude-trace": "dist/cli.js"
	},
	"scripts": {
		"build": "tsc && cp src/interceptor-loader.js src/token-extractor.js dist/ && npm run build:frontend",
		"build:frontend": "cd frontend && npm run build",
		"dev": "concurrently \"npm run dev:core\" \"npm run dev:copy\" \"npm run dev:frontend\"",
		"dev:core": "tsc --watch --preserveWatchOutput",
		"dev:copy": "nodemon --watch src/interceptor-loader.js --watch src/token-extractor.js --exec 'mkdir -p dist && cp src/interceptor-loader.js src/token-extractor.js dist/'",
		"dev:frontend": "cd frontend && npm run dev",
		"clean": "rm -rf dist",
		"prepublishOnly": "npm run clean && npm run build",
		"test": "node --require ./dist/interceptor.js echo 'test'",
		"test:generate": "npx tsx src/cli test/test-traffic.jsonl test/index.html",
		"typecheck": "tsc --noEmit"
	},
	"files": [
		"dist/**/*",
		"frontend/dist/**/*",
		"frontend/template.html",
		"README.md"
	],
	"keywords": [
		"claude",
		"anthropic",
		"logging",
		"api",
		"debugging",
		"http",
		"interception"
	],
	"author": "Mario Zechner",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/mariozechner/lemmy.git"
	},
	"engines": {
		"node": ">=16.0.0"
	},
	"devDependencies": {
		"@types/node": "^20.0.0",
		"concurrently": "^9.1.2",
		"typescript": "^5.0.0"
	},
	"dependencies": {
		"@anthropic-ai/claude-code": "^1.0.0",
		"@anthropic-ai/sdk": "^0.52.0",
		"@mariozechner/claude-trace": "^1.0.3"
	},
	"directories": {
		"test": "test"
	},
	"types": "./dist/index.d.ts",
	"bugs": {
		"url": "https://github.com/mariozechner/claude-trace/issues"
	},
	"homepage": "https://github.com/mariozechner/claude-trace#readme"
}
