BID · Console
Baseline · Intelligence · Decision
package.json 993 bytes · json
{
  "name": "bid-poc",
  "version": "0.1.0",
  "description": "Proof-of-concept for the Baseline pillar of the BID (Baseline / Intelligence / Decision) agent framework.",
  "private": true,
  "type": "module",
  "scripts": {
    "demo": "tsx scripts/run-demo.ts",
    "web": "tsx web/server.ts",
    "build:static": "tsx scripts/build-static.ts",
    "sec:verify": "tsx scripts/sec-verify.ts",
    "sec:verify:banks": "tsx scripts/sec-verify-banks.ts",
    "intel:verify": "tsx scripts/intel-verify.ts",
    "decision:verify": "tsx scripts/decision-verify.ts",
    "viz": "tsx scripts/test-visualizer.ts",
    "ask": "tsx scripts/ask.ts",
    "report": "tsx scripts/render-report.ts",
    "flow": "tsx scripts/render-flow.ts",
    "typecheck": "tsc -p tsconfig.json --noEmit"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.27.0",
    "yaml": "^2.9.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/node": "^20.11.0",
    "tsx": "^4.7.0",
    "typescript": "^5.4.0"
  }
}