tokelytics 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,27 @@
1
+ {
2
+ "name": "tokelytics",
3
+ "version": "0.1.0",
4
+ "description": "Tokelytics sync agent — streams local AI CLI usage logs (Claude Code, Codex) to your Tokelytics dashboard.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "tokelytics": "./bin/tokelytics.mjs"
9
+ },
10
+ "files": ["bin", "README.md"],
11
+ "keywords": ["claude", "codex", "tokens", "usage", "analytics", "cli", "ai", "cost"],
12
+ "homepage": "https://tokelytics.web.app",
13
+ "engines": {
14
+ "node": ">=20"
15
+ },
16
+ "scripts": {
17
+ "build": "tsc -b",
18
+ "bundle": "esbuild src/cli.ts --bundle --platform=node --format=esm --target=node20 --outfile=bin/tokelytics.mjs",
19
+ "prepublishOnly": "tsc -b && npm run bundle",
20
+ "start": "node ./bin/tokelytics.mjs"
21
+ },
22
+ "devDependencies": {
23
+ "@tokelytics/core": "0.1.0",
24
+ "chokidar": "^4.0.3",
25
+ "esbuild": "^0.21.5"
26
+ }
27
+ }