{
  "name": "@progressive-development/pd-icon",
  "version": "1.1.4",
  "description": "Webcomponents library 'pd-icon' for rendering dynamic and static SVG icons using Lit.",
  "author": "PD Progressive Development",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "type": "module",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./pd-icon": "./dist/pd-icon.js"
  },
  "files": [
    "dist/",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "lit": "^3.3.1",
    "tslib": "^2.8.1",
    "@progressive-development/pd-shared-styles": "0.4.4"
  },
  "customElements": "custom-elements.json",
  "scripts": {
    "analyze": "cem analyze --litelement --exclude dist,demo",
    "start": "vite",
    "build": "pnpm run analyze && vite build",
    "preview": "vite preview",
    "clean": "rm -rf dist",
    "clean:all": "rm -rf dist node_modules pnpm-lock.yaml",
    "lint": "eslint --ext .ts,.html src --ignore-path ../../../.eslintignore && prettier \"**/*.ts\" --check --ignore-path ../../../.eslintignore",
    "lint:lit": "lit-analyzer",
    "format": "eslint --ext .ts,.html src --fix --ignore-path ../../../.eslintignore && prettier \"**/*.ts\" --write --ignore-path ../../../.eslintignore",
    "test": "vitest run --coverage",
    "test:watch": "vitest --watch",
    "check": "pnpm run lint && pnpm run lint:lit && pnpm run build",
    "storybook": "storybook dev -p 6006",
    "build-storybook": "storybook build"
  }
}