{
  "name": "@social-embed/lib",
  "description": "URL detection and parsing for embed providers (YouTube, other OEmbed compatible providers),",
  "version": "0.1.0-next.11",
  "main": "dist/lib.umd.cjs",
  "module": "dist/lib.js",
  "typings": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist",
    "types"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/lib.js",
      "require": "./dist/lib.umd.cjs"
    }
  },
  "license": "MIT",
  "keywords": [
    "embed",
    "typescript",
    "youtube",
    "dailymotion"
  ],
  "publishConfig": {
    "access": "public"
  },
  "author": "Tony Narlock <tony@git-pull.com> (https://tony.sh)",
  "homepage": "https://social-embed.org/",
  "repository": {
    "type": "git",
    "url": "https://github.com/social-embed/social-embed"
  },
  "bugs": {
    "url": "https://github.com/social-embed/social-embed/issues"
  },
  "devDependencies": {
    "@biomejs/biome": "2.3.10",
    "typescript": "^5.9.3",
    "vite": "^7.3.0",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.0.16"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "clean": "rimraf dist",
    "check": "tsc --noEmit",
    "type-check": "tsc --noEmit",
    "vite": "vite",
    "start": "pnpm vite",
    "watch": "vite start",
    "build": "vite build",
    "bootstrap": "echo 'NOOP'",
    "test": "vitest run",
    "test:watch": "vitest run",
    "lint": "biome lint",
    "ncu": "ncu",
    "update": "ncu",
    "biome": "biome",
    "format": "pnpm run biome check . --write; pnpm run biome format . --write"
  }
}