{
	"name": "@csstools/css-color-parser",
	"description": "Parse CSS color values",
	"version": "1.3.1",
	"contributors": [
		{
			"name": "Antonio Laguna",
			"email": "antonio@laguna.es",
			"url": "https://antonio.laguna.es"
		},
		{
			"name": "Romain Menke",
			"email": "romainmenke@gmail.com"
		}
	],
	"license": "MIT",
	"funding": [
		{
			"type": "github",
			"url": "https://github.com/sponsors/csstools"
		},
		{
			"type": "opencollective",
			"url": "https://opencollective.com/csstools"
		}
	],
	"engines": {
		"node": "^14 || ^16 || >=18"
	},
	"main": "dist/index.cjs",
	"module": "dist/index.mjs",
	"types": "dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.mjs",
			"require": "./dist/index.cjs",
			"default": "./dist/index.mjs"
		}
	},
	"files": [
		"CHANGELOG.md",
		"LICENSE.md",
		"README.md",
		"dist"
	],
	"dependencies": {
		"@csstools/color-helpers": "^3.0.2",
		"@csstools/css-calc": "^1.1.3"
	},
	"peerDependencies": {
		"@csstools/css-parser-algorithms": "^2.3.1",
		"@csstools/css-tokenizer": "^2.2.0"
	},
	"scripts": {
		"build": "rollup -c ../../rollup/default.mjs",
		"lint": "node ../../.github/bin/format-package-json.mjs",
		"prepublishOnly": "npm run build && npm run test",
		"stryker": "stryker run --logLevel error",
		"test": "node ./test/test.mjs && node ./test/_import.mjs && node ./test/_require.cjs"
	},
	"homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser#readme",
	"repository": {
		"type": "git",
		"url": "https://github.com/csstools/postcss-plugins.git",
		"directory": "packages/css-color-parser"
	},
	"bugs": "https://github.com/csstools/postcss-plugins/issues",
	"keywords": [
		"color",
		"css",
		"parser"
	],
	"volta": {
		"extends": "../../package.json"
	}
}
