{
  "name": "imgproxyjs",
  "version": "1.7.0",
  "description": "ImgProxy javascript client for node/browser",
  "main": "dist/index.js",
  "type": "commonjs",
  "browser": "dist/index.browser.js",
  "types": "dist/index.d.ts",
  "homepage": "https://github.com/GNURub/imgproxyjs#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/GNURub/imgproxyjs.git"
  },
  "keywords": [
    "imgproxy",
    "imgproxyjs",
    "image"
  ],
  "author": {
    "name": "Rubén Cid Lara",
    "email": "rubencidlara@gmail.com"
  },
  "scripts": {
    "lint": "eslint './src/**/*.{js,ts,tsx}'",
    "lint:fix": "eslint './src/**/*.{js,ts,tsx}' --fix",
    "test": "npm run build && jest --passWithNoTests",
    "test:watch": "npm run build && jest --watchAll",
    "build": "webpack && esbuild src/index.ts --bundle --platform=node --target=esnext --outdir=./dist",
    "watch": "webpack -w",
    "start": "npm run build && npm link",
    "semantic-release": "semantic-release",
    "prepublishOnly": "npm run build"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint && npm run build && npm test",
      "pre-push": "npm run lint && npm run build && npm test"
    }
  },
  "devDependencies": {
    "@types/jest": "^29.5.3",
    "@types/node": "^20.4.5",
    "@typescript-eslint/eslint-plugin": "^6.2.0",
    "@typescript-eslint/parser": "^6.2.0",
    "buffer": "^6.0.3",
    "clean-webpack-plugin": "^4.0.0",
    "create-hmac": "^1.1.7",
    "crypto-browserify": "^3.12.0",
    "eslint": "^8.45.0",
    "eslint-config-prettier": "^8.9.0",
    "eslint-plugin-import": "^2.28.0",
    "eslint-plugin-prettier": "^5.0.0",
    "husky": "^8.0.3",
    "jest": "^29.6.2",
    "prettier": "^3.0.0",
    "semantic-release": "^21.0.7",
    "ts-loader": "^9.4.4",
    "typescript": "^5.1.6",
    "webpack": "^5.88.2",
    "webpack-cli": "^5.1.4"
  },
  "files": [
    "dist/**/*",
    "package.json"
  ],
  "license": "MIT",
  "dependencies": {
    "esbuild": "^0.18.17"
  }
}