{
  "name": "update-input-width",
  "version": "1.3.1",
  "description": "A function that given input element, updates its width to fit its content.",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "source": "src/index.ts",
  "types": "dist/cjs/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "yarn build-esm && yarn build-cjs",
    "build-esm": "tsc --project tsconfig.build.json --outDir dist/esm --module esnext",
    "build-cjs": "tsc --project tsconfig.build.json --outDir dist/cjs --module commonjs",
    "clean": "rimraf dist",
    "jest": "jest",
    "lint": "eslint src",
    "prepack": "yarn clean && yarn build",
    "prettier": "prettier --check . --cache",
    "test": "yarn lint && yarn tsc && yarn prettier && yarn jest",
    "tsc": "tsc --noEmit"
  },
  "keywords": [
    "input width"
  ],
  "author": {
    "name": "Wojciech Maj",
    "email": "kontakt@wojtekmaj.pl"
  },
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.15.0",
    "@babel/preset-env": "^7.15.0",
    "@babel/preset-typescript": "^7.18.6",
    "@types/jest": "^29.0.0",
    "@typescript-eslint/eslint-plugin": "^5.41.0",
    "@typescript-eslint/parser": "^5.44.0",
    "eslint": "^8.26.0",
    "eslint-config-wojtekmaj": "^0.7.1",
    "husky": "^8.0.0",
    "jest": "^29.0.0",
    "jest-canvas-mock": "^2.1.0",
    "jest-environment-jsdom": "^29.0.0",
    "prettier": "^2.7.0",
    "pretty-quick": "^3.1.0",
    "rimraf": "^3.0.0",
    "typescript": "^4.9.4"
  },
  "resolutions": {
    "semver@7.0.0": "^7.0.0"
  },
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wojtekmaj/update-input-width.git"
  },
  "funding": "https://github.com/wojtekmaj/update-input-width?sponsor=1",
  "packageManager": "yarn@3.1.0"
}