{
  "name": "@substrate-system/wavy-hr",
  "version": "0.0.8",
  "type": "module",
  "description": "HR tag with style",
  "main": "dist/index.js",
  "files": [
    "./dist/*"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./html": {
      "import": "./dist/html.js",
      "require": "./dist/html.cjs"
    },
    "./*": {
      "import": [
        "./dist/*.js",
        "./dist/*"
      ],
      "require": [
        "./dist/*.cjs",
        "./dist/*"
      ]
    }
  },
  "scripts": {
    "lint": "eslint \"./**/*.{ts,js}\"",
    "build-tests": "esbuild test/index.ts --target=es2020 --bundle --keep-names > test/test-bundle.js",
    "test": "esbuild ./test/index.ts --target=es2020 --bundle --keep-names | npx tapout | npx tap-spec",
    "build-css": "postcss src/index.css --use postcss-nesting > dist/style.css",
    "build-css:min": "postcss src/index.css --use cssnano postcss-nesting > dist/style.min.css",
    "build-cjs": "esbuild src/*.ts --format=cjs --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --out-extension:.js=.cjs --sourcemap",
    "build-esm": "esbuild src/*.ts --format=esm --metafile=dist/meta.json --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --sourcemap && tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
    "build-esm:min": "esbuild ./src/*.ts --format=esm --keep-names --bundle --tsconfig=tsconfig.build.json --minify --out-extension:.js=.min.js --outdir=./dist --sourcemap",
    "build-example": "mkdir -p ./public && rm -rf ./public/* && vite --base=\"/wavy-hr/\" build",
    "build-docs": "typedoc --tsconfig tsconfig.build.json ./src/index.ts",
    "build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-cjs && npm run build-esm && npm run build-esm:min && npm run build-css && npm run build-css:min && cp ./src/wave.svg ./dist",
    "start": "vite",
    "stylelint": "stylelint src/*.css",
    "toc": "markdown-toc --maxdepth 3 -i README.md",
    "preversion": "npm run lint && stylelint src/*.css",
    "version": "npm run toc && auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md README.md",
    "postversion": "git push --follow-tags && npm publish",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@substrate-system/web-component": "^0.0.35"
  },
  "devDependencies": {
    "@substrate-system/dom": "^0.1.9",
    "@substrate-system/tapout": "^0.0.1",
    "@substrate-system/tapzero": "^0.10.15",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "auto-changelog": "^2.4.0",
    "cssnano": "^7.1.0",
    "esbuild": "^0.25.9",
    "eslint": "^8.57.0",
    "eslint-config-standard": "^17.1.0",
    "markdown-toc": "^1.2.0",
    "postcss": "^8.5.6",
    "postcss-cli": "^11.0.1",
    "postcss-nesting": "^13.0.2",
    "stylelint": "^16.23.1",
    "stylelint-config-standard": "^39.0.0",
    "tap-spec": "^5.0.0",
    "typedoc": "^0.28.1",
    "typescript": "^5.4.5",
    "vite": "^7.0.3"
  },
  "author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)",
  "license": "SEE LICENSE IN LICENSE",
  "directories": {
    "example": "example",
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/substrate-system/wavy-hr.git"
  },
  "keywords": [
    "web",
    "component",
    "hr",
    "wave"
  ],
  "types": "./dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/substrate-system/wavy-hr/issues"
  },
  "homepage": "https://github.com/substrate-system/wavy-hr#readme"
}
