{
  "name": "nfe-io",
  "version": "6.0.0",
  "description": "Official NFE.io SDK for Node.js - TypeScript native with zero runtime dependencies",
  "keywords": [
    "nfe",
    "nfse",
    "nfse-nacional",
    "nota-fiscal",
    "nota-fiscal-eletronica",
    "nota-fiscal-de-servico",
    "invoice",
    "e-invoice",
    "brazil",
    "nodejs",
    "typescript",
    "sdk",
    "api",
    "fiscal"
  ],
  "author": {
    "name": "NFE.io Team",
    "email": "suporte@nfe.io"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nfe/client-nodejs.git"
  },
  "bugs": "https://github.com/nfe/client-nodejs/issues",
  "homepage": "https://nfe.io/docs/desenvolvedores/bibliotecas/node/",
  "engines": {
    "node": ">=22.0.0"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "MIGRATION.md",
    "skills"
  ],
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "generate": "tsx scripts/generate-types.ts && npm run generate:version",
    "generate:watch": "tsx watch scripts/generate-types.ts",
    "validate:spec": "tsx scripts/validate-spec.ts",
    "build": "npm run generate && npm run clean && npm run typecheck && tsdown",
    "prebuild": "npm run validate:spec",
    "clean": "rimraf dist",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts --fix",
    "format": "prettier --write 'src/**/*.ts'",
    "test": "vitest",
    "test:unit": "vitest tests/unit",
    "test:integration": "vitest tests/integration",
    "test:coverage": "vitest --coverage",
    "test:types": "vitest --run --typecheck --dir tests/types",
    "test:ui": "vitest --ui",
    "validate:openapi": "tsx scripts/validate-openapi-compliance.js",
    "docs": "typedoc src/index.ts --out docs/api",
    "examples": "node examples/run-examples.js",
    "examples:setup": "node examples/setup.js",
    "examples:test": "node examples/test-connection.js",
    "prepublishOnly": "npm run build",
    "prepublish:test": "npm run build && npm test -- --run",
    "release": "npm run build && npm test -- --run && npm publish",
    "generate:version": "tsx scripts/generate-version.ts"
  },
  "devDependencies": {
    "@types/node": "^22.19.21",
    "@typescript-eslint/eslint-plugin": "^8.59.0",
    "@typescript-eslint/parser": "^8.59.0",
    "@vitest/coverage-v8": "^4.1.8",
    "@vitest/ui": "^4.1.8",
    "dotenv": "~17.2.3",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.0",
    "openapi-typescript": "^7.13.0",
    "prettier": "^3.2.0",
    "rimraf": "^5.0.10",
    "tsdown": "^0.22.2",
    "tsx": "^4.22.4",
    "typedoc": "^0.25.13",
    "typescript": "^5.3.0",
    "vitest": "^4.1.8",
    "yaml": "^2.3.4"
  },
  "agents": {
    "skills": [
      {
        "name": "nfeio-node-sdk",
        "path": "./skills/nfeio-node-sdk",
        "description": "A Node.js SDK for interacting with the NFE.io API, providing functionalities to manage electronic invoices (NF-e) and service invoices (NFS-e) in Brazil."
      }
    ]
  }
}
