{
  "name": "lit-modal-portal",
  "version": "0.8.1",
  "description": "A custom portal directive for the Lit framework to render content elsewhere in the DOM",
  "keywords": [
    "Lit",
    "modal",
    "portal",
    "custom element",
    "directive"
  ],
  "homepage": "https://github.com/nicholas-wilcox/lit-modal-portal#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nicholas-wilcox/lit-modal-portal.git"
  },
  "bugs": {
    "url": "https://github.com/nicholas-wilcox/lit-modal-portal/issues"
  },
  "license": "MIT",
  "author": "Nicholas Wilcox",
  "files": [
    "/README.md",
    "/CHANGELOG.md",
    "/LICENSE.txt",
    "/index.{js,js.map,d.ts,d.ts.map}",
    "/portal.{js,js.map,d.ts,d.ts.map}"
  ],
  "main": "./index.js",
  "type": "module",
  "scripts": {
    "build": "npm run clean && npm run tsc && npm run esbuild",
    "build:watch": "concurrently \"npm:tsc:watch\" \"npm:esbuild:watch\"",
    "clean": "rimraf --glob ./index.* ./portal.*",
    "dev": "wds --watch",
    "docs": "typedoc",
    "docs:watch": "typedoc --watch",
    "esbuild": "node esbuild.config.js",
    "esbuild:watch": "node esbuild.config.js -w",
    "lint": "prettier -w .",
    "tsc": "tsc",
    "tsc:watch": "tsc -w",
    "test": "web-test-runner --puppeteer"
  },
  "devDependencies": {
    "@open-wc/testing": "^4.0.0",
    "@types/mocha": "^10.0.6",
    "@web/dev-server": "^0.4.3",
    "@web/dev-server-esbuild": "^1.0.2",
    "@web/test-runner": "^0.20.0",
    "@web/test-runner-puppeteer": "^0.18.0",
    "concurrently": "^9.1.2",
    "esbuild": "^0.25.0",
    "prettier": "^3.2.5",
    "rimraf": "^6.0.1",
    "sinon": "^19.0.2",
    "ts-lit-plugin": "^2.0.2",
    "typedoc": "^0.27.7",
    "typescript": "^5.7.3",
    "yargs-parser": "^21.0.1"
  },
  "peerDependencies": {
    "lit": ">=2"
  },
  "types": "./index.d.ts"
}
