mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-21 07:22:44 +00:00
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "claude-hud-tui",
|
|
"version": "2.0.11",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"format": "prettier --write src/",
|
|
"format:check": "prettier --check src/",
|
|
"typecheck": "tsc --noEmit",
|
|
"replay:events": "bun run scripts/replay-events.ts --",
|
|
"profile:events": "bun run scripts/profile-events.ts --",
|
|
"audit": "bun audit"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ink": "^5.0.1",
|
|
"react": "^18.3.1",
|
|
"minimist": "^1.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^18.3.12",
|
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
"@typescript-eslint/parser": "^8.51.0",
|
|
"@vitest/coverage-v8": "^4.0.16",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"husky": "^9.1.7",
|
|
"ink-testing-library": "^4.0.0",
|
|
"lint-staged": "^16.2.7",
|
|
"prettier": "^3.7.4",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|