{
  "name": "@bfrs/agentic-components",
  "version": "0.5.1",
  "private": false,
  "description": "Shiprocket agentic component library and documentation showcase.",
  "keywords": [
    "Shiprocket"
  ],
  "homepage": "https://agentic-components.vercel.app/",
  "bugs": {
    "url": "https://github.com/bfrs/agentic-components/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bfrs/agentic-components.git"
  },
  "license": "ISC",
  "author": "Shiprocket",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/public-api.d.ts",
      "import": "./dist/index.js"
    },
    "./custom-elements": {
      "types": "./dist/custom-elements.d.ts",
      "import": "./dist/custom-elements.js"
    },
    "./theme": {
      "types": "./dist/theme/index.d.ts",
      "import": "./dist/theme.js"
    },
    "./styles": {
      "default": "./dist/style.css"
    },
    "./fonts.css": {
      "default": "./dist/fonts.css"
    },
    "./fonts": {
      "default": "./dist/fonts.css"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/public-api.d.ts",
  "files": [
    "dist",
    "BFRS_AGENTIC_COMPONENTS.md",
    "scripts/postinstall.cjs"
  ],
  "scripts": {
    "postinstall": "node scripts/postinstall.cjs",
    "dev": "vite --host 0.0.0.0",
    "build": "npm run build:lib && npm run build:demo",
    "build:lib": "tsc -p tsconfig.json && vite build --config vite.lib.config.ts && vite build --config vite.custom-elements.config.ts && node scripts/copy-fonts.cjs",
    "build:custom-elements": "vite build --config vite.custom-elements.config.ts",
    "build:demo": "vite build --config vite.config.ts",
    "preview": "vite preview --host 0.0.0.0 --outDir dist-demo",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test:contracts": "node --test scripts/*.test.cjs",
    "lint": "eslint . --ext ts,tsx --max-warnings 0",
    "changeset": "changeset",
    "version-packages": "changeset version",
    "release": "npm run build:lib && changeset publish"
  },
  "dependencies": {
    "@phosphor-icons/react": "^2.1.10",
    "@radix-ui/react-checkbox": "^1.3.3",
    "@radix-ui/react-dialog": "^1.1.15",
    "@radix-ui/react-dropdown-menu": "^2.1.16",
    "@radix-ui/react-popover": "^1.1.15",
    "@radix-ui/react-radio-group": "^1.3.8",
    "@radix-ui/react-select": "^2.2.6",
    "@radix-ui/react-switch": "^1.2.6",
    "@radix-ui/react-tabs": "^1.1.13",
    "@radix-ui/react-tooltip": "^1.2.8",
    "class-variance-authority": "^0.7.1",
    "clsx": "^2.1.1",
    "tailwind-merge": "^3.3.1"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.12",
    "@types/node": "^25.7.0",
    "@types/react": "^18.3.12",
    "@types/react-dom": "^18.3.1",
    "@typescript-eslint/eslint-plugin": "^8.18.2",
    "@typescript-eslint/parser": "^8.18.2",
    "@vitejs/plugin-react": "^4.3.4",
    "autoprefixer": "^10.4.20",
    "eslint": "^9.17.0",
    "eslint-plugin-react-hooks": "^5.1.0",
    "eslint-plugin-react-refresh": "^0.4.16",
    "postcss": "^8.4.49",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tailwindcss": "^3.4.17",
    "typescript": "^5.7.2",
    "vite": "^6.0.5",
    "vite-plugin-dts": "^4.4.0"
  },
  "peerDependencies": {
    "react": ">=18.2.0",
    "react-dom": ">=18.2.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "module": "./dist/index.js",
  "style": "./dist/style.css"
}