{
  "name": "meta-ads-cli",
  "version": "0.1.0",
  "description": "Unofficial CLI for Meta (Facebook/Instagram) Ads management",
  "author": "Giorgio Liapakis",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "meta-ads": "./bin/run.js"
  },
  "files": [
    "/bin",
    "/dist",
    "/oclif.manifest.json"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "lint": "eslint src --ext .ts",
    "postpack": "rm -f oclif.manifest.json",
    "prepack": "npm run build && oclif manifest",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "oclif": {
    "bin": "meta-ads",
    "dirname": "meta-ads",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help"
    ],
    "topicSeparator": " "
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "keywords": [
    "meta",
    "facebook",
    "instagram",
    "ads",
    "cli",
    "marketing",
    "api"
  ],
  "dependencies": {
    "@oclif/core": "^4.0.0",
    "@oclif/plugin-help": "^6.0.0",
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.5",
    "conf": "^13.0.1",
    "dayjs": "^1.11.13",
    "dotenv": "^17.2.3",
    "facebook-nodejs-business-sdk": "^22.0.0",
    "p-retry": "^6.2.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "oclif": "^4.0.0",
    "typescript": "^5.7.0",
    "vitest": "^2.0.0"
  }
}
