{
  "name": "@funda/icons",
  "version": "2.5.0",
  "description": "funda svg icons package",
  "author": "funda",
  "keywords": [
    "svg",
    "icon"
  ],
  "repository": "github:funda-frontend/icons",
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "exports": {
    ".": {
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    },
    "./lib/vue": "./lib/vue/index.js",
    "./lib/vue3": "./lib/vue3/index.js"
  },
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "sideEffects": false,
  "files": [
    "lib",
    "assets"
  ],
  "devDependencies": {
    "@commitlint/cli": "^17.0.2",
    "@commitlint/config-conventional": "^17.0.2",
    "@semantic-release/changelog": "^6.0.0",
    "@semantic-release/commit-analyzer": "^9.0.1",
    "@semantic-release/git": "^10.0.0",
    "@semantic-release/npm": "^9.0.1",
    "@semantic-release/release-notes-generator": "^10.0.2",
    "@vue/compiler-dom": "^3.2.23",
    "camel-case": "^4.1.1",
    "clean-webpack-plugin": "4.0.0",
    "copy-webpack-plugin": "11.0.0",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.2",
    "mkdirp": "^1.0.4",
    "npm-run-all": "4.1.5",
    "semantic-release": "^19.0.3",
    "svgo": "^2.0.0",
    "webpack": "^5.10.3",
    "webpack-cli": "^4.2.0",
    "webpack-dev-server": "^4.1.1"
  },
  "scripts": {
    "start": "npm run dev",
    "dev": "npm run prepublishOnly && webpack serve --mode=development",
    "build": "npm run prepublishOnly && webpack --mode=production",
    "build:esm": "node ./scripts/build.js esm",
    "build:cjs": "node ./scripts/build.js cjs",
    "build:vue": "node ./scripts/build.js vue",
    "build:vue3": "node ./scripts/build.js vue3",
    "release": "npx semantic-release",
    "minify": "svgo --config=svgo.config.js",
    "prepublishOnly": "run-p build:*",
    "prepare": "husky install"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.svg": "npm run minify --"
  },
  "engines": {
    "node": ">=16 <17"
  }
}
