{
  "name": "whychose-extractor",
  "version": "1.0.0",
  "description": "Turn a ChatGPT or Claude export into a structured decision log. Zero dependencies, runs anywhere node does.",
  "main": "bin/extractor.js",
  "bin": {
    "whychose-extractor": "bin/extractor.js"
  },
  "scripts": {
    "test": "node bin/extractor.js sample-chatgpt.json > /tmp/out-chatgpt.json && node bin/extractor.js sample-claude.json > /tmp/out-claude.json && diff /tmp/out-chatgpt.json sample-chatgpt-output.json && diff /tmp/out-claude.json sample-claude-output.json && echo 'OK'",
    "sample": "node bin/extractor.js sample-chatgpt.json"
  },
  "repository": {
    "type": "git",
    "url": "https://whychose.com/extractor/"
  },
  "keywords": [
    "chatgpt",
    "claude",
    "export",
    "decision-log",
    "adr",
    "audit-trail"
  ],
  "author": "WhyChose",
  "license": "MIT",
  "engines": {
    "node": ">=18"
  }
}
