@tscircuit/routematch
Version:
TypeScript route matcher with Next.js-style dynamic routes
41 lines (40 loc) • 819 B
JSON
{
"name": "@tscircuit/routematch",
"version": "1.0.1",
"description": "TypeScript route matcher with Next.js-style dynamic routes",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node lib/index.ts --dts --format esm --sourcemap",
"test": "bun test"
},
"keywords": [
"router",
"routing",
"nextjs",
"dynamic-routes",
"path-matching",
"typescript",
"bun"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tscircuit/routematch.git"
},
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.5.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"engines": {
"bun": ">=1.0.0"
}
}