{
  "name": "sidepix",
  "version": "0.1.5",
  "author": "Dario Aprea <dario@neugelb.com>",
  "description": "<picture> component with image processing as side-effect",
  "license": "ISC",
  "repository": {
    "url": "https://github.com/neugelb/sidepix"
  },
  "keywords": [
    "image",
    "picture",
    "optimization",
    "react",
    "react-component",
    "next",
    "sharp"
  ],
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "scripts": {
    "lint": "eslint \"./lib/**/*.ts\" \"./lib/**/*.tsx\"",
    "format": "prettier --write lib/**/* tests/**/* examples/**/*",
    "build:cjs": "tsc",
    "build:esm": "tsc -p tsconfig-esm.json",
    "copy-subpackages": "shx cp -r package.json README.md subpackages/* dist",
    "build": "yarn clean && yarn build:esm && yarn build:cjs && yarn copy-subpackages",
    "clean": "shx rm -rf dist",
    "test:clean": "shx rm -rf tests/dist",
    "test:build": "tsc -p tests/tsconfig.json",
    "test:run": "tape tests/dist/tests/*.js",
    "test": "yarn test:clean && yarn test:build && yarn test:run",
    "npm-publish": "cd dist && npm adduser && npm publish"
  },
  "bin": {
    "sidepix-start": "cjs/bin/sidepix-start.js",
    "sidepix-wait": "cjs/bin/sidepix-wait.js"
  },
  "dependencies": {
    "cloneable-readable": "^2.1.0",
    "fraction.js": "^4.1.2",
    "lodash": "^4.17.21",
    "node-ipc": "^10.1.0",
    "sharp": "^0.29.3"
  },
  "devDependencies": {
    "@types/cloneable-readable": "^2.0.0",
    "@types/lodash": "^4.14.168",
    "@types/node-ipc": "^9.2.0",
    "@types/react": "^18.0.11",
    "@types/sharp": "^0.27.2",
    "@types/sinon": "^10.0.11",
    "@types/tape": "^4.13.2",
    "chokidar": "^3.5.2",
    "prettier": "^2.6.2",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "shx": "^0.3.4",
    "sinon": "^14.0.0",
    "tape": "^5.5.3",
    "typescript": "^4.7.3"
  },
  "peerDependencies": {
    "react": ">=16.14.0",
    "react-dom": ">=16.14.0"
  }
}
