idletime 0.1.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 +272 -0
- package/assets/idle-time-readme.png +0 -0
- package/dist/idletime.js +1503 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "idletime",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Visual CLI for Codex focus, token burn, spikes, and idle time from local session logs.",
|
|
5
|
+
"author": "ParkerRex",
|
|
6
|
+
"main": "./dist/idletime.js",
|
|
7
|
+
"module": "dist/idletime.js",
|
|
8
|
+
"bin": {
|
|
9
|
+
"idletime": "dist/idletime.js"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/ParkerRex/idletime.git"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/ParkerRex/idletime#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/ParkerRex/idletime/issues"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public",
|
|
21
|
+
"provenance": true
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"assets",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20",
|
|
30
|
+
"bun": ">=1.3.0"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"cli",
|
|
34
|
+
"codex",
|
|
35
|
+
"developer-tools",
|
|
36
|
+
"productivity",
|
|
37
|
+
"terminal",
|
|
38
|
+
"tokens"
|
|
39
|
+
],
|
|
40
|
+
"license": "UNLICENSED",
|
|
41
|
+
"packageManager": "bun@1.3.5",
|
|
42
|
+
"preferGlobal": true,
|
|
43
|
+
"type": "module",
|
|
44
|
+
"sideEffects": false,
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "bun run src/release/build-package.ts",
|
|
47
|
+
"check:release": "bun run typecheck && bun test && bun run build && npm pack --dry-run",
|
|
48
|
+
"dev": "bun run src/cli/idletime-bin.ts",
|
|
49
|
+
"idletime": "bun run src/cli/idletime-bin.ts",
|
|
50
|
+
"pack:dry-run": "npm pack --dry-run",
|
|
51
|
+
"publish:dry-run": "bun run build && bun publish --dry-run --access public",
|
|
52
|
+
"prepublishOnly": "bun run check:release",
|
|
53
|
+
"test": "bun test",
|
|
54
|
+
"typecheck": "tsc --noEmit"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/bun": "latest",
|
|
58
|
+
"typescript": "^5.9.3"
|
|
59
|
+
}
|
|
60
|
+
}
|