{
"type": "module",
"name": "@oh-my-pi/omp-stats",
"version": "15.7.4",
"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": "./src/index.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": "catalog:",
"@oh-my-pi/pi-utils": "catalog:",
"@tailwindcss/node": "catalog:",
"chart.js": "catalog:",
"date-fns": "catalog:",
"lucide-react": "catalog:",
"react": "catalog:",
"react-chartjs-2": "catalog:",
"react-dom": "catalog:",
"tailwindcss": "catalog:"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"postcss": "catalog:"
},
"engines": {
"bun": ">=1.3.14"
},
"files": [
"src",
"build.ts",
"tailwind.config.js",
"README.md"
],
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./*": {
"types": "./src/*.ts",
"import": "./src/*.ts"
},
"./client": {
"types": "./src/client/index.tsx",
"import": "./src/client/index.tsx"
},
"./client/*": {
"types": "./src/client/*.ts",
"import": "./src/client/*.ts"
},
"./client/components/*": {
"types": "./src/client/components/*.ts",
"import": "./src/client/components/*.ts"
},
"./*.js": "./src/*.ts"
}
}