{
  "name": "@codepark-apps/seofaster-nextjs",
  "version": "0.8.0",
  "description": "SEO Faster API client for Next.js - fetch AI-generated SEO content and handle webhooks",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "bin": {
    "seofaster-nextjs": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./webhook": {
      "types": "./dist/webhook.d.ts",
      "import": "./dist/webhook.mjs",
      "require": "./dist/webhook.js"
    },
    "./cache": {
      "types": "./dist/cache.d.ts",
      "import": "./dist/cache.mjs",
      "require": "./dist/cache.js"
    },
    "./static": {
      "types": "./dist/static.d.ts",
      "import": "./dist/static.mjs",
      "require": "./dist/static.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup src/index.ts src/webhook.ts src/cache.ts src/static.ts --format cjs,esm --dts && tsup --config tsup.cli.config.ts",
    "dev": "tsup src/index.ts src/webhook.ts src/cache.ts src/static.ts --format cjs,esm --dts --watch",
    "prepublishOnly": "npm run build && npm test",
    "release:patch": "npm version patch && npm publish --access public",
    "release:minor": "npm version minor && npm publish --access public",
    "release:major": "npm version major && npm publish --access public",
    "test:e2e": "node tests/e2e/cli.test.js",
    "test:webhook": "node tests/e2e/webhook.test.js",
    "test:client": "node tests/e2e/client.test.js",
    "test:static": "node tests/e2e/static.test.js",
    "test": "npm run test:e2e && npm run test:webhook && npm run test:client && npm run test:static"
  },
  "peerDependencies": {
    "next": ">=13.0.0"
  },
  "dependencies": {
    "commander": "^12.1.0",
    "picocolors": "^1.1.1"
  },
  "devDependencies": {
    "@types/node": "^25.0.3",
    "tsup": "^8.0.0",
    "typescript": "^5.0.0"
  },
  "keywords": [
    "seo",
    "nextjs",
    "blog",
    "cms",
    "seofaster",
    "ai-content",
    "programmatic-seo",
    "webhook"
  ],
  "author": "SEO Faster",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/seofaster/nextjs"
  },
  "homepage": "https://seofaster.com"
}
