{
  "name": "@sphido/hashtags",
  "type": "module",
  "version": "3.1.0",
  "author": "Roman Ožana <roman@ozana.cz> (https://ozana.cz)",
  "homepage": "https://sphido.cz",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sphido/sphido.git",
    "directory": "packages/sphido-hashtags"
  },
  "description": "Parse hashtags from string",
  "sideEffects": false,
  "keywords": [
    "sphido",
    "markdown",
    "parser",
    "tags",
    "hashtags"
  ],
  "engines": {
    "node": ">=22"
  },
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/hashtags.d.ts",
      "default": "./dist/hashtags.js"
    }
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "typescript": "^6.0.3",
    "vitest": "^4.1.5",
    "@sphido/frontmatter": "3.1.0"
  },
  "dependencies": {
    "@sindresorhus/slugify": "^3.0.0",
    "@sphido/core": "3.1.0"
  },
  "scripts": {
    "test": "vitest run --passWithNoTests",
    "build": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" && tsc"
  }
}