{
	"name": "webext-tools",
	"version": "4.1.0",
	"description": "Utility functions for Web Extensions",
	"keywords": [
		"extension",
		"chrome",
		"firefox",
		"safari",
		"web",
		"extensions",
		"execute",
		"function",
		"browser"
	],
	"repository": "fregante/webext-tools",
	"funding": "https://github.com/sponsors/fregante",
	"license": "MIT",
	"author": "Federico Brigante <me@fregante.com> (https://fregante.com)",
	"type": "module",
	"exports": {
		"./*": "./distribution/*"
	},
	"scripts": {
		"build": "tsc",
		"demo:build": "parcel build --no-cache",
		"demo:watch": "parcel watch --no-cache --no-hmr",
		"prepack": "tsc --sourceMap false",
		"test": "tsc --noEmit && xo && vitest run && npm run demo:build",
		"test:watch": "vitest",
		"watch": "tsc --watch"
	},
	"xo": {
		"envs": [
			"browser"
		],
		"globals": [
			"chrome"
		],
		"rules": {
			"unicorn/prefer-top-level-await": "off",
			"n/no-unsupported-features/node-builtins": "off"
		}
	},
	"dependencies": {
		"webext-detect": "^5.3.2",
		"webext-patterns": "^1.5.1",
		"webext-polyfill-kinda": "^1.0.2"
	},
	"devDependencies": {
		"@parcel/config-webextension": "^2.13.3",
		"@sindresorhus/tsconfig": "^7.0.0",
		"@types/chrome": "^0.0.299",
		"@types/jest": "^29.5.14",
		"@types/sinon-chrome": "^2.2.15",
		"jest-chrome": "^0.8.0",
		"parcel": "^2.13.3",
		"sinon-chrome": "^3.0.1",
		"typescript": "^5.7.3",
		"vitest": "^3.0.3",
		"xo": "^0.60.0"
	},
	"engines": {
		"node": ">=18"
	},
	"targets": {
		"main": false,
		"default": {
			"engines": {
				"browsers": "last 1 chrome version"
			},
			"source": "./source/demo/manifest.json",
			"distDir": "./.built/demo",
			"sourceMap": {
				"inline": true
			},
			"optimize": false
		}
	},
	"webExt": {
		"sourceDir": ".built/demo",
		"run": {
			"startUrl": [
				"https://example.com"
			]
		}
	}
}
