{
  "name": "data-source-cli",
  "version": "1.0.1",
  "description": "A CLI tool to manage and generate environment configuration for Claude/Goose or custom AI agents",
  "main": "dist/data-source-cli.js",
  "type": "module",
  "bin": {
    "data-source-cli": "dist/data-source-cli.js"
  },
  "files": ["dist"],
  "scripts": {
    "start": "node dist/data-source-cli.js",
    "dev": "tsup bin/data-source-cli.ts --watch --onSuccess \"node dist/data-source-cli.js\"",
    "build": "tsup bin/data-source-cli.ts --format esm --out-dir dist --clean",
    "check-types": "tsc --noEmit"
  },
  "keywords": [
    "cli",
    "mcp",
    "goose",
    "claude",
    "agent",
    "env",
    "data",
    "config"
  ],
  "author": "Muhammad Umar Farooq",
  "license": "MIT",
  "dependencies": {
    "yaml": "^2.7.1",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@types/node": "^22.15.3",
    "@types/yargs": "^17.0.33",
    "tsup": "^8.4.0",
    "typescript": "^5.8.3"
  }
}
