{
  "name": "@fatagnus/convex-feedback",
  "version": "0.2.18",
  "description": "Bug reports and feedback collection component for Convex applications with AI analysis and email notifications",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/ozanturksever/convex-feedback"
  },
  "homepage": "https://github.com/ozanturksever/convex-feedback#readme",
  "bugs": {
    "url": "https://github.com/ozanturksever/convex-feedback/issues"
  },
  "author": "Ozan Turksever <ozan.turksever@gmail.com>",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "convex",
    "feedback",
    "bug-reports",
    "ai-analysis",
    "email-notifications",
    "react"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react/index.js"
    },
    "./convex.config": "./src/convex/convex.config.ts",
    "./convex/*": "./src/convex/*",
    "./convex/agents/*": "./src/convex/agents/*",
    "./convex/http": "./src/convex/http.ts"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "typecheck": "tsc --noEmit --project tsconfig.json",
    "typecheck:convex": "tsc --noEmit --project src/convex/tsconfig.json",
    "postgenerate": "node -e \"const fs=require('fs');const f='src/convex/_generated/api.ts';if(fs.existsSync(f)){let c=fs.readFileSync(f,'utf8');if(!c.includes('@ts-nocheck')){c=c.replace('/* eslint-disable */','/* eslint-disable */\\n// @ts-nocheck - Circular reference errors in generated Convex component types are expected');fs.writeFileSync(f,c)}}\"",
    "clean": "rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "peerDependencies": {
    "@ai-sdk/openai-compatible": ">=0.1.0",
    "@convex-dev/agent": ">=0.1.0",
    "zod": ">=3.0.0",
    "@mantine/core": ">=7.0.0",
    "@mantine/form": ">=7.0.0",
    "@mantine/hooks": ">=7.0.0",
    "@mantine/notifications": ">=7.0.0",
    "@tabler/icons-react": ">=3.0.0",
    "convex": ">=1.17.0",
    "html2canvas": ">=1.4.0",
    "react": ">=18.0.0",
    "resend": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "@convex-dev/agent": {
      "optional": true
    },
    "@ai-sdk/openai-compatible": {
      "optional": true
    },
    "zod": {
      "optional": true
    },
    "resend": {
      "optional": true
    },
    "@mantine/core": {
      "optional": true
    },
    "@mantine/form": {
      "optional": true
    },
    "@mantine/hooks": {
      "optional": true
    },
    "@mantine/notifications": {
      "optional": true
    },
    "@tabler/icons-react": {
      "optional": true
    },
    "html2canvas": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/react": "^18.0.0",
    "typescript": "^5.0.0",
    "vitest": "^2.0.0",
    "convex-test": "^0.0.36"
  }
}
