ccusage-widget
Version:
A beautiful macOS desktop widget that displays your Claude Code usage statistics in real-time
87 lines (86 loc) • 2.04 kB
JSON
{
"name": "ccusage-widget",
"version": "1.3.2",
"description": "A beautiful macOS desktop widget that displays your Claude Code usage statistics in real-time",
"main": "dist/main.js",
"bin": {
"ccusage-widget": "./bin/ccusage-widget.js"
},
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "tsc && npm run copy-assets",
"copy-assets": "cp src/*.html dist/ && cp -r src/styles dist/",
"dist": "electron-builder",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run typecheck"
},
"keywords": [
"electron",
"macos",
"widget",
"claude",
"ccusage",
"desktop",
"productivity",
"usage-tracker",
"desktop-app",
"system-tray",
"real-time",
"statistics"
],
"author": {
"name": "JeongJaeSoon",
"email": "94jaesoon.jeong@gmail.com",
"url": "https://github.com/JeongJaeSoon"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JeongJaeSoon/ccusage-widget.git"
},
"homepage": "https://github.com/JeongJaeSoon/ccusage-widget#readme",
"bugs": {
"url": "https://github.com/JeongJaeSoon/ccusage-widget/issues"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/",
"bin/",
"assets/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"electron-builder": "^24.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"ccusage": "latest"
},
"optionalDependencies": {
"electron": "^28.0.0"
},
"build": {
"appId": "com.ccusage.widget",
"productName": "CCUsage Widget",
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.png"
}
}
}