{
	"name": "valleyed",
	"version": "4.5.19",
	"description": "A lightweight package with definitions for various validation rules, and helper services to consume said rules.",
	"type": "module",
	"sideEffects": false,
	"main": "./dist/cjs/index.cjs",
	"module": "./dist/esm/index.mjs",
	"types": "./dist/types/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"require": {
				"min": "./dist/cjs/index.min.cjs",
				"default": "./dist/cjs/index.cjs"
			},
			"import": {
				"min": "./dist/esm/index.min.mjs",
				"default": "./dist/esm/index.mjs"
			}
		}
	},
	"scripts": {
		"dev": "tsup --watch",
		"build": "tsup || echo 'Done'",
		"lint": "eslint --fix src tests",
		"test": "vitest run",
		"release": "standard-version",
		"prepare": "husky"
	},
	"keywords": [
		"typescript",
		"schema",
		"validation",
		"type",
		"inference"
	],
	"author": "Kevin Izuchukwu",
	"license": "ISC",
	"devDependencies": {
		"@commitlint/cli": "^20.4.2",
		"@commitlint/config-conventional": "^20.4.2",
		"@k11/configs": "^0.1.2",
		"@types/node": "^25.3.3",
		"esbuild-fix-imports-plugin": "^1.0.23",
		"eslint": "^9.39.2",
		"husky": "^9.1.7",
		"standard-version": "^9.5.0",
		"tsup": "^8.5.1",
		"typescript": "^5.9.3",
		"vitest": "^4.0.18"
	},
	"files": [
		"LICENSE",
		"CHANGELOG.md",
		"README.md",
		"bin",
		"dist"
	],
	"repository": {
		"url": "git://github.com/kevinand11/valleyed.git"
	},
	"publishConfig": {
		"registry": "https://registry.npmjs.org/"
	},
	"commitlint": {
		"extends": [
			"@commitlint/config-conventional"
		]
	},
	"dependencies": {
		"@standard-schema/spec": "^1.1.0",
		"url-regex-safe": "^4.0.0"
	},
	"standard-version": {}
}
