claude-code-wakatime 3.0.1 → 3.0.3
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/.claude-plugin/marketplace.json +4 -1
- package/dist/index.js +1342 -1443
- package/dist/install-hooks.js +71 -0
- package/hooks/hooks.json +1 -12
- package/package.json +3 -2
- package/src/dependencies.ts +8 -8
- package/src/index.ts +30 -209
- package/src/install-hooks.ts +1 -10
- package/src/logger.ts +8 -1
- package/src/options.ts +2 -3
- package/src/types.ts +50 -0
- package/src/utils.ts +118 -71
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wakatime",
|
|
3
|
+
"metadata": {
|
|
4
|
+
"description": "WakaTime plugin for Claude Code - Track your AI usage, lines of code generated, and time spent prompting AI"
|
|
5
|
+
},
|
|
3
6
|
"owner": {
|
|
4
7
|
"name": "WakaTime"
|
|
5
8
|
},
|
|
@@ -7,7 +10,7 @@
|
|
|
7
10
|
{
|
|
8
11
|
"name": "claude-code-wakatime",
|
|
9
12
|
"source": "./",
|
|
10
|
-
"description": "Track your AI usage, lines of code generated, and time spent prompting AI",
|
|
13
|
+
"description": "WakaTime plugin for Claude Code - Track your AI usage, lines of code generated, and time spent prompting AI",
|
|
11
14
|
"version": "3.0.0",
|
|
12
15
|
"homepage": "https://github.com/wakatime/claude-code-wakatime",
|
|
13
16
|
"repository": "https://github.com/wakatime/claude-code-wakatime",
|