{
  "name": "@cosmixclub/parsero",
  "version": "1.2.0",
  "description": "Construtor de agentes de IA de maneira simplificada.",
  "author": "Gepetojj <contato.gepetojj@gmail.com>",
  "license": "MIT",
  "main": "dist/index.js",
  "keywords": [
    "crewai",
    "langchain",
    "langgraph"
  ],
  "homepage": "https://github.com/cosmixclub/parsero",
  "bugs": {
    "url": "https://github.com/cosmixclub/parsero/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cosmixclub/parsero.git"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "types": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": "./dist/index.js",
      "default": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "langsmith": "^0.3.16"
  },
  "peerDependencies": {
    "@langchain/core": ">=0.3.0 <0.4.0",
    "@langchain/langgraph": "^0.2.10",
    "zod": "^3.20.0"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.4",
    "@changesets/cli": "^2.29.1",
    "@langchain/community": "^0.3.40",
    "@langchain/core": "0.3.44",
    "@langchain/langgraph": "^0.2.64",
    "@langchain/openai": "^0.5.5",
    "@trivago/prettier-plugin-sort-imports": "^5.2.2",
    "@types/node": "^22.14.1",
    "@typescript-eslint/eslint-plugin": "^8.29.1",
    "@typescript-eslint/parser": "^8.29.1",
    "@vercel/style-guide": "^6.0.0",
    "@vitest/coverage-v8": "^3.1.1",
    "@vitest/ui": "^3.1.1",
    "commitizen": "^4.3.1",
    "cz-conventional-changelog": "^3.3.0",
    "dotenv": "^16.5.0",
    "eslint": "8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-perfectionist": "^4.11.0",
    "eslint-plugin-prettier": "^5.2.6",
    "prettier": "^3.5.3",
    "tsup": "^8.4.0",
    "tsx": "^4.19.3",
    "typescript": "^5.8.3",
    "vitest": "^3.1.1",
    "zod": "^3.24.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "scripts": {
    "ci": "pnpm build && pnpm check-format && pnpm check-exports && pnpm test",
    "build": "tsup",
    "lint": "eslint --fix .",
    "format": "prettier --write .",
    "check-format": "prettier --check .",
    "commit": "git cz",
    "check-exports": "attw --pack .",
    "local-release": "changeset version && changeset publish",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui"
  }
}