{
	"name": "@effuse/router",
	"version": "1.2.5",
	"description": "A simple, type-safe router for Single Page Applications (SPA). It manages URL state and navigation seamlessly for Effuse applications.",
	"author": "Chris M. Pérez",
	"license": "MIT",
	"publishConfig": {
		"access": "public"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/chrismichaelps/effuse.git"
	},
	"bugs": {
		"url": "https://github.com/chrismichaelps/effuse/issues"
	},
	"homepage": "https://github.com/chrismichaelps/effuse#readme",
	"type": "module",
	"main": "./dist/index.cjs",
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"import": {
				"types": "./dist/index.d.ts",
				"default": "./dist/index.js"
			},
			"require": {
				"types": "./dist/index.d.cts",
				"default": "./dist/index.cjs"
			}
		}
	},
	"files": [
		"dist",
		"src"
	],
	"scripts": {
		"build": "tsup",
		"dev": "tsup --watch",
		"lint": "eslint src",
		"pretest": "node ../../scripts/check-node-version.mjs",
		"test": "vitest run",
		"typecheck": "tsc --noEmit"
	},
	"keywords": [
		"router",
		"spa",
		"navigation",
		"simple",
		"type-safe",
		"effuse",
		"typescript"
	],
	"engines": {
		"node": ">=22.14.0"
	},
	"peerDependencies": {
		"@effuse/core": "3.0.0"
	},
	"dependencies": {
		"effect": "^3.21.5"
	},
	"devDependencies": {
		"@effect/eslint-plugin": "^0.3.2",
		"@eslint/js": "^9.39.4",
		"@types/node": "^25.5.0",
		"@effuse/core": "3.0.0",
		"eslint": "^10.0.3",
		"tsup": "^8.5.1",
		"typescript": "^5.9.3",
		"typescript-eslint": "^8.57.1",
		"vitest": "^4.1.0"
	}
}
