getaimeter 0.6.0 → 0.6.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/package.json +53 -53
- package/watcher.js +711 -648
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "getaimeter",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "Track AI coding costs across Claude, Cursor, Codex, and Gemini. Optimization recommendations that cut costs by 30%.",
|
|
5
|
-
"bin": {
|
|
6
|
-
"aimeter": "cli.js"
|
|
7
|
-
},
|
|
8
|
-
"main": "watcher.js",
|
|
9
|
-
"engines": {
|
|
10
|
-
"node": ">=18"
|
|
11
|
-
},
|
|
12
|
-
"license": "MIT",
|
|
13
|
-
"keywords": [
|
|
14
|
-
"claude",
|
|
15
|
-
"anthropic",
|
|
16
|
-
"cursor",
|
|
17
|
-
"codex",
|
|
18
|
-
"gemini",
|
|
19
|
-
"ai",
|
|
20
|
-
"tokens",
|
|
21
|
-
"cost",
|
|
22
|
-
"usage",
|
|
23
|
-
"tracking",
|
|
24
|
-
"monitor",
|
|
25
|
-
"optimization",
|
|
26
|
-
"claude-code",
|
|
27
|
-
"vscode",
|
|
28
|
-
"multi-tool"
|
|
29
|
-
],
|
|
30
|
-
"files": [
|
|
31
|
-
"cli.js",
|
|
32
|
-
"watcher.js",
|
|
33
|
-
"reporter.js",
|
|
34
|
-
"config.js",
|
|
35
|
-
"state.js",
|
|
36
|
-
"service.js",
|
|
37
|
-
"tray.js",
|
|
38
|
-
"tray.ps1",
|
|
39
|
-
"log-viewer.ps1",
|
|
40
|
-
"tray-launcher.vbs",
|
|
41
|
-
"icon.ico",
|
|
42
|
-
"update-check.js",
|
|
43
|
-
"README.md"
|
|
44
|
-
],
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/Khavel/AIMeter.git"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://getaimeter.com",
|
|
50
|
-
"author": "Alejandro Ceja",
|
|
51
|
-
"preferGlobal": true,
|
|
52
|
-
"dependencies": {}
|
|
53
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "getaimeter",
|
|
3
|
+
"version": "0.6.1",
|
|
4
|
+
"description": "Track AI coding costs across Claude, Cursor, Codex, and Gemini. Optimization recommendations that cut costs by 30%.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"aimeter": "cli.js"
|
|
7
|
+
},
|
|
8
|
+
"main": "watcher.js",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"claude",
|
|
15
|
+
"anthropic",
|
|
16
|
+
"cursor",
|
|
17
|
+
"codex",
|
|
18
|
+
"gemini",
|
|
19
|
+
"ai",
|
|
20
|
+
"tokens",
|
|
21
|
+
"cost",
|
|
22
|
+
"usage",
|
|
23
|
+
"tracking",
|
|
24
|
+
"monitor",
|
|
25
|
+
"optimization",
|
|
26
|
+
"claude-code",
|
|
27
|
+
"vscode",
|
|
28
|
+
"multi-tool"
|
|
29
|
+
],
|
|
30
|
+
"files": [
|
|
31
|
+
"cli.js",
|
|
32
|
+
"watcher.js",
|
|
33
|
+
"reporter.js",
|
|
34
|
+
"config.js",
|
|
35
|
+
"state.js",
|
|
36
|
+
"service.js",
|
|
37
|
+
"tray.js",
|
|
38
|
+
"tray.ps1",
|
|
39
|
+
"log-viewer.ps1",
|
|
40
|
+
"tray-launcher.vbs",
|
|
41
|
+
"icon.ico",
|
|
42
|
+
"update-check.js",
|
|
43
|
+
"README.md"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/Khavel/AIMeter.git"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://getaimeter.com",
|
|
50
|
+
"author": "Alejandro Ceja",
|
|
51
|
+
"preferGlobal": true,
|
|
52
|
+
"dependencies": {}
|
|
53
|
+
}
|