-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 768 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 768 Bytes
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
{
"name": "droidusage",
"version": "1.1.0",
"description": "A CLI tool for analyzing Factory AI usage from local session files",
"main": "index.js",
"bin": {
"droidusage": "./bin/droidusage.js"
},
"scripts": {
"start": "node bin/droidusage.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"droid",
"ai",
"usage",
"analytics",
"cli",
"tokens",
"cost"
],
"author": "Cris R",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^9.4.1",
"date-fns": "^2.29.3",
"droidusage": "^1.1.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"jest": "^30.2.0"
}
}