Files
vat-api.eu/node_modules/rou3/package.json
2026-02-13 22:02:30 +01:00

48 lines
1.4 KiB
JSON

{
"name": "rou3",
"version": "0.7.12",
"description": "Lightweight and fast router for JavaScript.",
"repository": "h3js/rou3",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./compiler": "./dist/compiler.mjs"
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"bench:bun": "bun ./test/bench",
"bench:deno": "deno run -A ./test/bench/index.ts",
"bench:node": "node --expose-gc --allow-natives-syntax --disable-warning=ExperimentalWarning --experimental-strip-types ./test/bench/index.ts",
"build": "obuild",
"dev": "vitest",
"lint": "eslint . && prettier -c src test",
"lint:fix": "automd && eslint --fix . && prettier -w src test",
"release": "pnpm test && pnpm build && changelogen --release && git push --follow-tags && npm publish",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"0x": "^6.0.0",
"@mitata/counters": "^0.0.8",
"@types/node": "^25.0.2",
"@vitest/coverage-v8": "^4.0.15",
"automd": "^0.4.2",
"changelogen": "^0.6.2",
"esbuild": "^0.27.1",
"eslint": "^9.39.2",
"eslint-config-unjs": "^0.5.0",
"mitata": "^1.0.34",
"obuild": "^0.4.8",
"prettier": "^3.7.4",
"rou3-latest": "npm:rou3@^0.7.11",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"packageManager": "pnpm@10.26.0"
}