@marginfront/code-cost-clarity 0.5.4

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,57 @@
1
+ {
2
+ "name": "@marginfront/code-cost-clarity",
3
+ "version": "0.5.4",
4
+ "description": "See your Claude Code and Codex spend in MarginFront. One command wires your coding-agent usage telemetry through a local collector into MarginFront, priced per engineer, per model, with accurate prompt-cache token splitting and automatic billable tool-call tracking.",
5
+ "type": "module",
6
+ "bin": {
7
+ "code-cost-clarity": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsup",
15
+ "typecheck": "tsc --noEmit",
16
+ "lint": "eslint src/",
17
+ "test": "vitest run",
18
+ "prepublishOnly": "npm run build"
19
+ },
20
+ "keywords": [
21
+ "marginfront",
22
+ "claude-code",
23
+ "anthropic",
24
+ "cost-tracking",
25
+ "ai-spend",
26
+ "opentelemetry",
27
+ "usage-metering",
28
+ "finops",
29
+ "llm-cost"
30
+ ],
31
+ "author": "MarginFront",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/Lowcountry-AI/platform",
36
+ "directory": "packages/code-cost-clarity"
37
+ },
38
+ "homepage": "https://marginfront.com",
39
+ "bugs": {
40
+ "url": "https://github.com/Lowcountry-AI/platform/issues"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public"
44
+ },
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^20.0.0",
50
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
51
+ "@typescript-eslint/parser": "^6.21.0",
52
+ "eslint": "^8.57.1",
53
+ "tsup": "^8.0.0",
54
+ "typescript": "^5.3.0",
55
+ "vitest": "^1.0.0"
56
+ }
57
+ }