cloud-usage-token 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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "cloud-usage-token",
3
+ "version": "0.1.0",
4
+ "description": "Live-monitor your Claude Code and OpenAI Codex CLI usage (sessions, limits, costs, and status) from the CloudUsage dashboard.",
5
+ "keywords": [
6
+ "claude",
7
+ "claude-code",
8
+ "codex",
9
+ "openai-codex",
10
+ "ai",
11
+ "usage",
12
+ "monitoring",
13
+ "dashboard",
14
+ "cli"
15
+ ],
16
+ "license": "MIT",
17
+ "author": "Carlos Guilarte",
18
+ "homepage": "https://cloudusage.space",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/cguilarte/cloud-usage-agent.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/cguilarte/cloud-usage-agent/issues"
25
+ },
26
+ "type": "module",
27
+ "packageManager": "bun@1.3.5",
28
+ "workspaces": [
29
+ "packages/*"
30
+ ],
31
+ "bin": {
32
+ "cloud-usage-token": "./dist/index.js"
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md"
37
+ ],
38
+ "engines": {
39
+ "node": ">=20"
40
+ },
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "prepublishOnly": "bun run build",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "typecheck": "tsc -p tsconfig.json --noEmit",
47
+ "dev": "bun src/index.ts run",
48
+ "connect": "bun src/index.ts connect"
49
+ },
50
+ "dependencies": {
51
+ "ws": "^8.0.0"
52
+ },
53
+ "devDependencies": {
54
+ "@cloud-usage-token/shared": "0.0.0",
55
+ "@cloud-usage-token/claude-usage": "0.0.0",
56
+ "@cloud-usage-token/claude-sessions": "0.0.0",
57
+ "@cloud-usage-token/codex-usage": "0.0.0",
58
+ "@cloud-usage-token/codex-sessions": "0.0.0",
59
+ "@types/node": "^24.0.0",
60
+ "@types/ws": "^8.0.0",
61
+ "@vitest/coverage-v8": "^4.0.0",
62
+ "tsup": "^8.0.0",
63
+ "typescript": "^6.0.0",
64
+ "vitest": "^4.0.0"
65
+ }
66
+ }