-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.01 KB
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
{
"name": "rouzer",
"version": "2.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsgo -b tsconfig.json",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"zod": ">=4"
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@hattip/adapter-test": "^0.0.49",
"@types/node": "^25.0.3",
"@typescript/native-preview": "7.0.0-dev.20251208.1",
"prettier": "^3.7.4",
"rouzer": "link:.",
"tsc-lint": "^0.1.9",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16",
"zod": "^4.1.13"
},
"dependencies": {
"@hattip/core": "^0.0.49",
"@remix-run/route-pattern": "^0.15.3",
"alien-middleware": "^0.11.4"
},
"prettier": "@alloc/prettier-config",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alloc/rouzer.git"
},
"files": [
"dist",
"!*.tsbuildinfo"
]
}