@loredunk/ccoach 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@loredunk/ccoach",
3
+ "version": "0.1.0",
4
+ "description": "本机 AI 用量教练:只读分析 Claude Code / Codex 用量与习惯(A local AI usage coach for Claude Code / Codex)",
5
+ "type": "module",
6
+ "bin": { "ccoach": "dist/cli.js" },
7
+ "main": "./dist/index.js",
8
+ "exports": { ".": "./dist/index.js" },
9
+ "files": ["dist"],
10
+ "engines": { "node": ">=18" },
11
+ "license": "MIT",
12
+ "keywords": ["claude-code", "codex", "ai", "usage", "tokens", "cost", "ccusage", "cli", "analytics"],
13
+ "repository": { "type": "git", "url": "git+https://github.com/loredunk/ccoach.git" },
14
+ "homepage": "https://github.com/loredunk/ccoach#readme",
15
+ "bugs": { "url": "https://github.com/loredunk/ccoach/issues" },
16
+ "publishConfig": { "access": "public" },
17
+ "scripts": {
18
+ "build": "tsdown",
19
+ "dev": "tsx src/cli.ts",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "typecheck": "tsc --noEmit",
23
+ "verify:ccusage": "tsx scripts/verify-ccusage.ts",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^22",
28
+ "tsdown": "^0.9",
29
+ "tsx": "^4",
30
+ "typescript": "^5.6",
31
+ "vitest": "^2"
32
+ },
33
+ "dependencies": {
34
+ "cac": "^6.7.14"
35
+ }
36
+ }