Zion Boggan
repos/TreeTrace/package.json
zionboggan.com ↗
51 lines · json
History for this file →
1
{
2
  "name": "treetrace",
3
  "version": "0.10.2",
4
  "description": "Catch every time your AI coding agent touches auth, secrets, or skips a test, then turn the correction you made into a local regression eval. Local-first, deterministic, no LLM judge.",
5
  "keywords": [
6
    "security",
7
    "regression",
8
    "evals",
9
    "claude-code",
10
    "ai-agent",
11
    "agent",
12
    "secrets-detection",
13
    "audit",
14
    "transcript",
15
    "prompt-lineage",
16
    "provenance",
17
    "local-first",
18
    "compliance",
19
    "corrections",
20
    "refusals",
21
    "token-usage"
22
  ],
23
  "license": "Apache-2.0",
24
  "author": "Zion Boggan",
25
  "homepage": "https://treetrace.dev",
26
  "repository": {
27
    "type": "git",
28
    "url": "git+https://github.com/TreeTraceTool/TreeTrace.git"
29
  },
30
  "bugs": {
31
    "url": "https://github.com/TreeTraceTool/TreeTrace/issues"
32
  },
33
  "type": "module",
34
  "bin": {
35
    "treetrace": "bin/treetrace.js"
36
  },
37
  "files": [
38
    "bin",
39
    "src",
40
    "SCHEMA.md",
41
    "LICENSE",
42
    "NOTICE"
43
  ],
44
  "engines": {
45
    "node": ">=18"
46
  },
47
  "scripts": {
48
    "test": "node --test test/treetrace.test.js test/adapters.test.js",
49
    "prepublishOnly": "node --test test/treetrace.test.js test/adapters.test.js"
50
  }
51
}