{
  "name": "@grove-dev/ui",
  "version": "1.1.1",
  "type": "module",
  "description": "Framework-agnostic UI primitives for Grove: filter, sort, paginate, score, format, and shared design tokens. V1 — typed against the discriminated IndexRecord union.",
  "license": "MIT",
  "keywords": [
    "grove",
    "ui",
    "filter",
    "sort",
    "pagination",
    "scoring",
    "format",
    "framework-agnostic",
    "design-tokens"
  ],
  "homepage": "https://github.com/tortuvshin/grove#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tortuvshin/grove.git",
    "directory": "packages/ui"
  },
  "bugs": {
    "url": "https://github.com/tortuvshin/grove/issues"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./styles.css": "./dist/styles.css"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@grove-dev/core": "0.3.1"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && cp src/styles.css dist/styles.css",
    "build:tsc": "tsc -p tsconfig.json",
    "check": "tsc -p tsconfig.json --noEmit",
    "test": "cd ../.. && pnpm exec vitest run --project unit packages/ui"
  }
}