-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "memoirist",
"version": "0.1.4",
"description": "Elysia's Radix Tree router for fast matching dynamic parameters",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/index.js"
},
"types": "./src/index.ts",
"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 --hot example/index.ts",
"test": "bun wiptest",
"build": "rimraf dist && pnpm build:esm && pnpm build:cjs",
"build:cjs": "swc src --config-file .cjs.swcrc -d dist/cjs && tsc --project tsconfig.esm.json",
"build:esm": "swc src --config-file .esm.swcrc -d dist && tsc --project tsconfig.esm.json",
"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",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.40",
"@types/node": "^18.11.7",
"@types/trouter": "^3.1.1",
"bun-types": "^0.5.0",
"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",
"typescript": "^4.9.4"
}
}