{
	"type": "module",
	"name": "@oh-my-pi/omp-stats",
	"version": "15.9.1",
	"description": "Local observability dashboard for pi AI usage statistics",
	"homepage": "https://omp.sh",
	"author": "Can Boluk",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/can1357/oh-my-pi.git",
		"directory": "packages/stats"
	},
	"bugs": {
		"url": "https://github.com/can1357/oh-my-pi/issues"
	},
	"keywords": [
		"ai",
		"observability",
		"metrics",
		"dashboard",
		"llm",
		"statistics"
	],
	"main": "./src/index.ts",
	"types": "./dist/types/index.d.ts",
	"bin": {
		"omp-stats": "./src/index.ts"
	},
	"scripts": {
		"build": "bun run build.ts",
		"dev": "bun run src/index.ts",
		"check": "biome check . && bun run check:types",
		"check:types": "tsgo -p tsconfig.json --noEmit && tsgo -p tsconfig.client.json --noEmit",
		"lint": "biome lint .",
		"fix": "biome check --write --unsafe .",
		"fmt": "biome format --write ."
	},
	"dependencies": {
		"@oh-my-pi/pi-ai": "15.9.1",
		"@oh-my-pi/pi-utils": "15.9.1",
		"@tailwindcss/node": "^4.3.0",
		"chart.js": "^4.5.1",
		"date-fns": "^4.3.0",
		"lucide-react": "^1.16.0",
		"react": "19.2.6",
		"react-chartjs-2": "^5.3.1",
		"react-dom": "19.2.6",
		"tailwindcss": "^4.3.0"
	},
	"devDependencies": {
		"@types/bun": "^1.3.14",
		"@types/react": "^19.2.15",
		"@types/react-dom": "^19.2.3",
		"postcss": "^8.5.15"
	},
	"engines": {
		"bun": ">=1.3.14"
	},
	"files": [
		"src",
		"build.ts",
		"tailwind.config.js",
		"README.md",
		"dist/types",
		"dist/client"
	],
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"import": "./src/index.ts"
		},
		"./*": {
			"types": "./dist/types/*.d.ts",
			"import": "./src/*.ts"
		},
		"./client": {
			"types": "./dist/types/client/index.d.ts",
			"import": "./src/client/index.tsx"
		},
		"./client/*": {
			"types": "./dist/types/client/*.d.ts",
			"import": "./src/client/*.ts"
		},
		"./client/components/*": {
			"types": "./dist/types/client/components/*.d.ts",
			"import": "./src/client/components/*.ts"
		},
		"./*.js": "./src/*.ts"
	}
}
