{
	"name": "event-to-files",
	"version": "0.3.0",
	"description": "Get the files from an input change event or from a file or directory drag and drop event",
	"license": "MIT",
	"author": {
		"name": "Edoardo Scibona",
		"url": "https://github.com/velut"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/velut/event-to-files.git"
	},
	"bugs": {
		"url": "https://github.com/velut/event-to-files/issues"
	},
	"keywords": [
		"Event",
		"DragEvent",
		"File",
		"directory",
		"folder",
		"HTML",
		"input",
		"change",
		"drag",
		"drop",
		"DataTransferItem",
		"FileSystemEntry",
		"FileSystemFileEntry",
		"FileSystemDirectoryEntry",
		"TypeScript"
	],
	"sideEffects": false,
	"type": "module",
	"zshy": {
		"exports": {
			"./package.json": "./package.json",
			".": "./src/index.ts"
		},
		"cjs": false
	},
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js"
		}
	},
	"files": [
		"dist"
	],
	"scripts": {
		"check": "tsc --noEmit",
		"build": "tsc --noEmit && zshy",
		"attw": "attw --pack . --profile esm-only",
		"test": "vitest",
		"test:ci": "vitest run --coverage --bail 1",
		"lint": "prettier --check .",
		"format": "prettier --write .",
		"pre-push": "bun install && bun run lint && bun run build && bun run test:ci && bun run attw",
		"release": "np --no-cleanup"
	},
	"devDependencies": {
		"@arethetypeswrong/cli": "^0.18.2",
		"@total-typescript/shoehorn": "^0.1.2",
		"@vitest/coverage-v8": "^3.2.4",
		"np": "^10.2.0",
		"prettier": "^3.6.2",
		"typescript": "^5.9.2",
		"vitest": "^3.2.4",
		"zshy": "^0.3.5"
	}
}
