mirror of
https://github.com/tiennm99/ccstatusline.git
synced 2026-05-14 06:58:26 +00:00
dfa009e7df
Closes #204
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "ccstatusline",
|
|
"version": "2.2.3",
|
|
"description": "A customizable status line formatter for Claude Code CLI",
|
|
"module": "src/ccstatusline.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"ccstatusline": "dist/ccstatusline.js"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"start": "bun run src/ccstatusline.ts",
|
|
"build": "rm -rf dist/* ; bun build src/ccstatusline.ts --target=node --outfile=dist/ccstatusline.js --target-version=14",
|
|
"postbuild": "bun run scripts/replace-version.ts",
|
|
"example": "cat scripts/payload.example.json | bun start",
|
|
"prepublishOnly": "bun run build",
|
|
"lint": "bun tsc --noEmit && eslint . --config eslint.config.js --max-warnings=0",
|
|
"lint:fix": "bun tsc --noEmit && eslint . --config eslint.config.js --max-warnings=0 --fix",
|
|
"docs": "typedoc",
|
|
"docs:clean": "rm -rf docs"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.33.0",
|
|
"@stylistic/eslint-plugin": "^5.2.3",
|
|
"@types/bun": "latest",
|
|
"@types/pluralize": "^0.0.33",
|
|
"@types/react": "^19.1.10",
|
|
"chalk": "^5.5.0",
|
|
"eslint": "^9.33.0",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-import-newlines": "^1.4.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"https-proxy-agent": "^7.0.0",
|
|
"ink": "6.2.0",
|
|
"ink-gradient": "^3.0.0",
|
|
"ink-select-input": "^6.2.0",
|
|
"pluralize": "^8.0.0",
|
|
"react": "^19.1.1",
|
|
"react-devtools-core": "^7.0.1",
|
|
"strip-ansi": "^7.1.0",
|
|
"tinyglobby": "^0.2.14",
|
|
"typedoc": "^0.28.12",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.39.1",
|
|
"vitest": "^4.0.18",
|
|
"zod": "^4.0.17"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"claude-code",
|
|
"cli",
|
|
"status-line",
|
|
"terminal"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sirmalloc/ccstatusline.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"trustedDependencies": [
|
|
"unrs-resolver"
|
|
],
|
|
"patchedDependencies": {
|
|
"ink@6.2.0": "patches/ink@6.2.0.patch"
|
|
}
|
|
}
|