57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "memoirist",
|
|
"version": "0.4.0",
|
|
"description": "Elysia's Radix Tree router for fast matching dynamic parameters",
|
|
"author": {
|
|
"name": "saltyAom",
|
|
"url": "https://github.com/SaltyAom",
|
|
"email": "saltyaom@gmail.com"
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"bun": "./dist/bun/index.js",
|
|
"require": "./dist/cjs/index.js",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"elysia",
|
|
"memoirist",
|
|
"router"
|
|
],
|
|
"homepage": "https://github.com/SaltyAom/memoirist",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/SaltyAom/memoirist"
|
|
},
|
|
"bugs": "https://github.com/SaltyAom/memoirist/issues",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "bun run --watch example/index.ts",
|
|
"test": "bun test",
|
|
"build": "bun build.ts",
|
|
"benchmark": "bun benchmarks/index.ts",
|
|
"benchmark:memoirist": "bun benchmarks/libs/memoirist.ts",
|
|
"release": "npm run build && npm run test && npm publish --access public"
|
|
},
|
|
"devDependencies": {
|
|
"@medley/router": "^0.2.1",
|
|
"@types/bun": "1.1.2",
|
|
"@types/node": "^18.11.7",
|
|
"@types/trouter": "^3.1.1",
|
|
"express": "^4.18.2",
|
|
"find-my-way": "^7.4.0",
|
|
"hono": "^2.7.5",
|
|
"koa-tree-router": "^0.12.1",
|
|
"radix3": "^1.0.0",
|
|
"raikiri": "^0.1.3",
|
|
"rimraf": "^3.0.2",
|
|
"trek-router": "^1.2.0",
|
|
"trouter": "^3.2.0",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "5.4.5"
|
|
}
|
|
}
|