{
	"name": "@open-iframe-resizer/core",
	"private": false,
	"version": "2.3.1",
	"description": "Open-source modern iframe resizer",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Lemick/open-iframe-resizer.git"
	},
	"keywords": [
		"iframe",
		"Resizing",
		"Resizer",
		"resize",
		"cross",
		"same",
		"domain",
		"width",
		"height",
		"responsive"
	],
	"type": "module",
	"main": "./dist/index.umd.cjs",
	"module": "./dist/index.js",
	"typings": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js",
			"require": "./dist/index.umd.cjs"
		}
	},
	"files": [
		"dist",
		"README.md"
	],
	"scripts": {
		"docs": "typedoc --options typedoc.json src/",
		"lint": "biome lint ./src",
		"build": "tsc && npm run lint && vite build && npm run docs",
		"build:watch": "vite build --watch && npm run docs",
		"dev": "concurrently \"vite build --watch\" \"npm run serve\"",
		"serve": "concurrently \"vite --port 5550\" \"vite --port 5551\"",
		"test": "npm run test:unit && npm run test:e2e",
		"test:e2e": "npx playwright install --with-deps && npx playwright test",
		"test:unit": "vitest run",
		"prepare": "copyfiles -V ../../README.md packages/core"
	}
}
