-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.7 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
57
58
59
60
61
62
{
"name": "rou3",
"version": "0.5.1",
"description": "Lightweight and fast router for JavaScript based on Radix Tree",
"repository": "unjs/rou3",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"bench:bun": "bun ./test/bench",
"bench:node": "node --import jiti/register ./test/bench",
"build": "unbuild",
"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": "^5.7.0",
"@medley/router": "^0.2.1",
"@vitest/coverage-v8": "^2.1.1",
"automd": "^0.3.8",
"changelogen": "^0.5.7",
"esbuild": "^0.23.1",
"eslint": "^9.11.0",
"eslint-config-unjs": "^0.3.2",
"find-my-way": "^9.0.1",
"hono": "^4.6.2",
"jiti": "^2.0.0-rc.1",
"koa-tree-router": "^0.12.1",
"listhen": "^1.7.2",
"mitata": "^0.1.14",
"prettier": "^3.3.3",
"radix3": "^1.1.2",
"rou3-release": "npm:rou3@0.5.1",
"typescript": "^5.6.2",
"unbuild": "^3.0.0-rc.7",
"vitest": "^2.1.1"
},
"packageManager": "pnpm@9.11.0"
}