{
	"author": {
		"name": "Baptiste Pillot",
		"email": "baptiste@pillot.fr"
	},
	"dependencies": {
		"@itrocks/app-dir": "latest",
		"@itrocks/class-type": "latest",
		"@itrocks/decorator": "latest"
	},
	"description": "Domain-driven route manager with automatic generation, decorators, and static routes",
	"devDependencies": {
		"@types/node": "^24.10",
		"typescript": "^6.0"
	},
	"engines": {
		"node": ">=24"
	},
	"exports": {
		".": {
			"import": "./esm/route.js",
			"require": "./cjs/route.js"
		},
		"./static-routes-plugin": {
			"import": "./esm/static-routes-plugin.js",
			"require": "./cjs/static-routes-plugin.js"
		}
	},
	"files": [
		"LICENSE",
		"README.md",
		"cjs",
		"esm",
		"!esm.*",
		"!*.map"
	],
	"homepage": "https://it.rocks",
	"keywords": [
		"backend",
		"it.rocks",
		"route",
		"routes"
	],
	"license": "LGPL-3.0-or-later",
	"name": "@itrocks/route",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/itrocks-ts/route.git"
	},
	"scripts": {
		"build": "npm run build:cjs && npm run build:esm",
		"build:cjs": "tsc -p tsconfig.cjs.json",
		"build:esm": "tsc -p tsconfig.esm.json && node esm/esm"
	},
	"version": "0.1.2"
}
