slopmeter 0.1.0 → 0.3.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/README.md +25 -1
- package/dist/cli.js +1039 -134
- package/dist/cli.js.map +1 -1
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slopmeter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "CLI for generating yearly usage heatmaps for Claude Code, Codex, and Open Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "tsx src/cli.ts",
|
|
37
37
|
"build": "tsup",
|
|
38
|
+
"test": "tsup && tsx --test test/**/*.test.ts",
|
|
38
39
|
"typecheck": "tsc --noEmit",
|
|
39
40
|
"check": "bun run typecheck && bun run build",
|
|
40
41
|
"start": "node dist/cli.js",
|