{
  "name": "@dyanet/nextjs-config-aws",
  "version": "1.1.2",
  "description": "Next.js adapter for AWS configuration management with support for server components, runtime environment variables, and AWS services integration",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs && npm run build:postbuild",
    "build:types": "tsc --project tsconfig.types.json",
    "build:esm": "tsc --project tsconfig.esm.json",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "build:postbuild": "node ../../scripts/postbuild.mjs ./dist",
    "clean": "rimraf dist",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts src/**/*.tsx",
    "lint:fix": "eslint src/**/*.ts src/**/*.tsx --fix",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "nextjs",
    "next.js",
    "configuration",
    "aws",
    "secrets-manager",
    "ssm",
    "parameter-store",
    "s3",
    "typescript",
    "zod",
    "server-components",
    "app-router",
    "runtime-env",
    "environment-variables"
  ],
  "author": "Dyanet",
  "license": "MIT",
  "engines": {
    "node": ">=20.0.0",
    "npm": ">=10.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@dyanet/config-aws": "^1.0.0"
  },
  "peerDependencies": {
    "next": ">=14.0.0",
    "react": ">=18.0.0"
  },
  "devDependencies": {
    "@aws-sdk/client-s3": "^3.0.0",
    "@aws-sdk/client-secrets-manager": "^3.0.0",
    "@aws-sdk/client-ssm": "^3.0.0",
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@types/react": "^19.0.0",
    "fast-check": "^3.15.0",
    "jest": "^29.5.0",
    "next": "^16.0.0",
    "react": "^19.0.0",
    "rimraf": "^6.0.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.9.2",
    "zod": "^3.22.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dyanet/config-aws.git"
  },
  "bugs": {
    "url": "https://github.com/dyanet/config-aws/issues"
  },
  "homepage": "https://github.com/dyanet/config-aws/tree/main/packages/nextjs-config-aws"
}
