{
	"name": "openseadragon-select-plugin",
	"version": "1.0.20",
	"description": "adds the uption to select with mouse to viewer",
	"main": "dist/index.js",
	"module": "dist/index.min.mjs",
	"unpkg": "dist/index.umd.min.js",
	"types": "dist/index.d.ts",
	"scripts": {
		"test": "jest",
		"clean": "rm -rf dist",
		"version": "sh version.sh",
		"pretest": "npm run lint",
		"lint": "eslint \"src/**/*.ts\" --fix",
		"prepublish": "npm run build",
		"prepack": "npm run build",
		"build": "npm run clean && npm run lint && tsc && npm run bundle:esm && npm run bundle:esm:min && npm run bundle:umd && npm run bundle:umd:min && npm run build:stats",
		"build:stats": "(echo '\\033[35;3m' ; cd dist && ls -lh index*js index*gz | tail -n +2 | awk '{print $5,$9}')",
		"bundle:esm": "rollup -c --input dist/index.js --file dist/index.mjs --format esm",
		"bundle:esm:min": "terser --ecma 6 --compress --mangle --module -o dist/index.min.mjs -- dist/index.mjs && gzip -9 -c dist/index.min.mjs > dist/index.min.mjs.gz",
		"bundle:umd": "rollup -c --input dist/index.js --file dist/index.umd.js --format umd --name sayHello",
		"bundle:umd:min": "terser --ecma 6 --compress --mangle -o dist/index.umd.min.js -- dist/index.umd.js && gzip -9 -c dist/index.umd.min.js > dist/index.umd.min.js.gz"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/tuvia-r/openseadragon-select-plugin.git"
	},
	"publishConfig": {
		"registry": "https://npm.pkg.github.com"
	},
	"keywords": [
		"openseadragon",
		"select",
		"plugin"
	],
	"author": "tuviarumpler@gmail.com",
	"license": "Apache-2.0",
	"bugs": {
		"url": "https://github.com/tuvia-r/openseadragon-select-plugin/issues"
	},
	"homepage": "https://github.com/tuvia-r/openseadragon-select-plugin#readme",
	"devDependencies": {
		"@rollup/plugin-node-resolve": "^14.1.0",
		"@types/jest": "^28.1.8",
		"@types/openseadragon": "^3.0.3",
		"@typescript-eslint/eslint-plugin": "^5.36.0",
		"auto-changelog": "^2.4.0",
		"eslint": "^8.0.1",
		"eslint-config-prettier": "^8.3.0",
		"eslint-plugin-import": "^2.25.3",
		"eslint-plugin-import-helpers": "^1.2.0",
		"eslint-plugin-prettier": "^4.0.0",
		"eslint-plugin-simple-import-sort": "^7.0.0",
		"jest-environment-jsdom": "^29.0.1",
		"json": "^11.0.0",
		"openseadragon": "^3.1.0",
		"rollup": "^2.79.1",
		"terser": "^5.15.0",
		"ts-jest": "^28.0.8",
		"typescript": "^4.8.2"
	}
}
