tokely 0.5.1
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/LICENSE +21 -0
- package/README.md +157 -0
- package/dist/cli.js +8598 -0
- package/dist/cli.js.map +1 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tokely",
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "CLI for generating yearly usage heatmaps for Claude Code, Codex, Cursor, Gemini CLI, Open Code, and Pi Coding Agent.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=22"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "Jean P.D. Meijer",
|
|
11
|
+
"homepage": "https://github.com/evoerax/tokely",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+ssh://git@github-evo/evoerax/tokely.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/evoerax/tokely/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"cli",
|
|
21
|
+
"heatmap",
|
|
22
|
+
"usage",
|
|
23
|
+
"codex",
|
|
24
|
+
"claude-code",
|
|
25
|
+
"cursor",
|
|
26
|
+
"gemini-cli",
|
|
27
|
+
"opencode",
|
|
28
|
+
"pi-coding-agent"
|
|
29
|
+
],
|
|
30
|
+
"bin": {
|
|
31
|
+
"tokely": "./dist/cli.js"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "tsx src/cli.ts",
|
|
40
|
+
"build": "tsup",
|
|
41
|
+
"test": "tsup && tsx --test test/**/*.test.ts",
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"check": "bun run typecheck && bun run build",
|
|
44
|
+
"start": "node dist/cli.js",
|
|
45
|
+
"prepublishOnly": "bun run build",
|
|
46
|
+
"lint": "eslint .",
|
|
47
|
+
"lint:fix": "eslint . --fix"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@repo/eslint-config": "workspace:*",
|
|
51
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
52
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
53
|
+
"@types/node": "latest",
|
|
54
|
+
"eslint": "^9.39.2",
|
|
55
|
+
"tsup": "latest",
|
|
56
|
+
"tsx": "latest",
|
|
57
|
+
"typescript": "latest",
|
|
58
|
+
"typescript-eslint": "^8.50.1"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"better-sqlite3": "^12.6.2",
|
|
62
|
+
"ora": "^9.3.0",
|
|
63
|
+
"ow": "^3.1.1",
|
|
64
|
+
"sharp": "^0.34.5",
|
|
65
|
+
"svg-builder": "^3.0.4"
|
|
66
|
+
}
|
|
67
|
+
}
|