-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.59 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ccstat",
"version": "2.0.5",
"description": "CLI tool that analyzes Claude Code session history and visualizes project activity patterns in a timeline format",
"type": "module",
"main": "dist/index.js",
"bin": {
"ccstat": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsdown",
"build:prod": "npm run build && npm run package",
"package": "pkg dist/index.js --out-path bin --targets node18-linux-x64,node18-macos-x64,node18-win-x64 --compress GZip",
"clean:dist": "rm -rf dist",
"prepublishOnly": "npm run check && npm run build",
"prepack": "npm run build",
"start": "node dist/index.js",
"test": "jest --passWithNoTests",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit",
"check": "npm run lint && npm run type-check && npm run test",
"clean": "rm -rf dist node_modules bin",
"prepare": "husky"
},
"keywords": [
"claude",
"cli",
"analytics",
"visualization"
],
"author": {
"name": "ktny",
"url": "https://github.com/ktny"
},
"license": "MIT",
"homepage": "https://github.com/ktny/ccstat#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ktny/ccstat.git"
},
"bugs": {
"url": "https://github.com/ktny/ccstat/issues"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"date-fns": "^3.3.1",
"ink": "^4.4.1",
"react": "^18.2.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"esbuild": "^0.25.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.2",
"pkg": "^5.8.1",
"prettier": "^3.2.0",
"semantic-release": "^24.2.6",
"ts-jest": "^29.1.0",
"tsdown": "^0.12.9",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}