{
  "name": "@stevebel/png",
  "version": "1.5.1",
  "description": "🖼A full-featured PNG decoder and encoder.",
  "keywords": [
    "png",
    "vivaxy",
    "image",
    "parser",
    "parse",
    "decode",
    "decoder",
    "js-png",
    "node-png",
    "png-js",
    "png-node",
    "browser-png",
    "png-browser",
    "pngjs",
    "png-parser",
    "browser",
    "node",
    "full-featured"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.js",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "coverage": "jest --collect-coverage",
    "release:beta": "npm run test && npm run build && standard-version --prerelease beta && npm publish --access public --tag beta && git push --follow-tags",
    "release": "npm run test && npm run build && standard-version && npm publish --access public && git push --follow-tags",
    "_postinstall": "husky install",
    "prepublishOnly": "pinst --disable",
    "postpublish": "pinst --enable"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stevebel/png.git"
  },
  "author": "stevebel",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/stevebel/png/issues"
  },
  "homepage": "https://github.com/stevebel/png#readme",
  "lint-staged": {
    "*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
      "prettier --write"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "prettier": {
    "printWidth": 80,
    "tabWidth": 2,
    "useTabs": false,
    "semi": true,
    "singleQuote": true,
    "quoteProps": "as-needed",
    "jsxSingleQuote": false,
    "trailingComma": "all",
    "bracketSpacing": true,
    "jsxBracketSameLine": false,
    "arrowParens": "always",
    "proseWrap": "always",
    "htmlWhitespaceSensitivity": "css",
    "endOfLine": "lf",
    "overrides": [
      {
        "files": "*.{css,less,json,html,yml,yaml,pcss}",
        "options": {
          "singleQuote": false
        }
      }
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^17.4.0",
    "@commitlint/config-conventional": "^17.4.0",
    "@types/fs-extra": "^9.0.0",
    "@types/jest": "^29.0.0",
    "@types/pako": "^2.0.0",
    "fast-glob": "^3.2.0",
    "fs-extra": "^9.0.0",
    "husky": "5",
    "jest": "^29.0.0",
    "lint-staged": "^10.0.0",
    "pinst": "^2.1.4",
    "prettier": "^2.0.0",
    "standard-version": "^9.0.0",
    "ts-jest": "^29.0.0",
    "typescript": "^4.9.0"
  },
  "dependencies": {
    "pako": "^2.1.0"
  }
}
