{
  "name": "@grove-dev/core",
  "version": "0.7.0",
  "type": "module",
  "description": "Headless engine for Grove: resource schema, config, importers, validators, taxonomy, sitemap, llms.txt, and the data build pipeline.",
  "license": "MIT",
  "engines": {
    "node": ">=22.12.0"
  },
  "keywords": [
    "grove",
    "directory",
    "curated",
    "community",
    "knowledge",
    "zod",
    "yaml",
    "cli"
  ],
  "homepage": "https://github.com/tortuvshin/grove#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tortuvshin/grove.git",
    "directory": "packages/core"
  },
  "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"
    },
    "./directory": {
      "types": "./dist/directory-client.d.ts",
      "import": "./dist/directory-client.js"
    }
  },
  "files": [
    "dist",
    "assets",
    "README.md"
  ],
  "dependencies": {
    "@resvg/resvg-js": "^2.6.2",
    "jiti": "^2.6.1",
    "satori": "^0.29.0",
    "yaml": "^2.9.0",
    "zod": "^4.4.3"
  },
  "scripts": {
    "build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.json",
    "check": "tsc -p tsconfig.json --noEmit",
    "test": "cd ../.. && pnpm exec vitest run --project unit packages/core"
  }
}