{
	"name": "gatsby-plugin-imgix-lite",
	"version": "0.0.1",
	"description": "A lite version of @imgix/gatsby",
	"keywords": [
		"gatsby",
		"gatsby-plugin",
		"imgix",
		"gatsby-image",
		"gatsby-plugin-image"
	],
	"repository": {
		"type": "git",
		"url": "ssh://git@github.com/angeloashmore/gatsby-plugin-imgix-lite.git"
	},
	"license": "MIT",
	"author": "Angelo Ashmore",
	"sideEffects": false,
	"exports": {
		".": {
			"require": "./dist/index.cjs",
			"import": "./dist/index.mjs"
		},
		"./node": {
			"require": "./dist/index.server.cjs",
			"import": "./dist/index.server.mjs"
		},
		"./gatsby-node": "./dist/plugin/gatsby-node.cjs",
		"./package.json": "./package.json"
	},
	"main": "dist/index.cjs",
	"module": "dist/index.mjs",
	"types": "dist/index.d.ts",
	"files": [
		"dist",
		"src",
		"gatsby-node.js",
		"fragments.js",
		"node.js",
		"node.d.ts"
	],
	"scripts": {
		"build": "siroc build",
		"dev": "siroc build --watch",
		"format": "prettier --write .",
		"lint": "eslint --ext .js,.ts .",
		"prepare": "npm run build",
		"release": "npm run build && npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
		"release:alpha": "npm run build && npm run test && standard-version --release-as major --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
		"release:alpha:dry": "standard-version --release-as major --prerelease alpha --dry-run",
		"release:dry": "standard-version --dry-run",
		"test": "npm run lint && npm run unit",
		"unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava"
	},
	"dependencies": {
		"@imgix/js-core": "^3.2.1",
		"camel-case": "^4.1.2",
		"imgix-url-params": "^11.11.3",
		"node-fetch": "^2.6.2",
		"param-case": "^3.0.4"
	},
	"devDependencies": {
		"@types/react-test-renderer": "^17.0.1",
		"@types/sinon": "^10.0.4",
		"@typescript-eslint/eslint-plugin": "^5.1.0",
		"@typescript-eslint/parser": "^5.1.0",
		"ava": "^3.15.0",
		"eslint": "^8.0.1",
		"eslint-config-prettier": "^8.3.0",
		"eslint-plugin-prettier": "^4.0.0",
		"eslint-plugin-tsdoc": "^0.2.14",
		"gatsby": "^3.14.3",
		"gatsby-image": "^3.11.0",
		"gatsby-plugin-image": "^1.14.1",
		"graphql-compose": "^9.0.4",
		"msw": "^0.35.0",
		"nyc": "^15.1.0",
		"prettier": "^2.4.1",
		"prettier-plugin-jsdoc": "^0.3.24",
		"react": "^17.0.2",
		"react-test-renderer": "^17.0.2",
		"sinon": "^11.1.2",
		"siroc": "^0.16.0",
		"standard-version": "^9.3.2",
		"ts-eager": "^2.0.2",
		"type-fest": "^2.5.1",
		"typescript": "^4.4.4"
	},
	"peerDependencies": {
		"gatsby": "^3.13.0",
		"gatsby-image": "^3.11.0",
		"gatsby-plugin-image": "^1.13.0",
		"react": "^17.0.2"
	},
	"engines": {
		"node": ">=12.7.0"
	},
	"publishConfig": {
		"access": "public"
	}
}
