{
  "name": "@tombuc/wokwi-elements-custom",
  "version": "1.2.6",
  "main": "dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "repository": "https://github.com/TomasBuchta/wokwi-elements-custom",
  "author": "Tomas Buchta",
  "license": "MIT",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@babel/core": "^7.15.0",
    "@babel/runtime": "^7.15.3",
    "@storybook/addon-actions": "^6.4.19",
    "@storybook/addon-essentials": "^6.4.19",
    "@storybook/addon-google-analytics": "^6.3.0-next.1",
    "@storybook/addon-knobs": "^6.4.0",
    "@storybook/builder-webpack5": "^6.4.19",
    "@storybook/manager-webpack5": "^6.4.19",
    "@storybook/web-components": "^6.4.19",
    "@typescript-eslint/eslint-plugin": "^4.29.1",
    "@typescript-eslint/parser": "^4.29.1",
    "babel-loader": "^8.2.2",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-json": "^3.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "eslint-plugin-storybook": "^0.5.7",
    "husky": "^6.0.0",
    "hygen": "^6.1.0",
    "lint-staged": "^10.2.11",
    "prettier": "^2.3.2",
    "react-is": "^16.13.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.23.0",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "terser": "^4.8.0",
    "typescript": "^4.3.5",
    "web-component-analyzer": "^1.1.6"
  },
  "dependencies": {
    "lit": "^2.0.0"
  },
  "scripts": {
    "build": "rimraf dist && tsc --sourceMap false && tsc -m esnext --outDir dist/esm --sourceMap false && rollup -c rollup.config.js && terser -c -m -o dist/wokwi-elements.bundle.min.js dist/wokwi-elements.bundle.js",
    "lint": "eslint src/**/*.ts",
    "prepare": "husky install && npm run build",
    "analyze-components": "web-component-analyzer analyze src/*-element.ts --outFile custom-elements.json",
    "storybook": "npm run analyze-components && start-storybook -p 6006",
    "build-storybook": "npm run analyze-components && build-storybook",
    "new-element": "hygen element new",
    "clear-cache": "rimraf node_modules/.cache"
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  }
}
