-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "rouzer",
"version": "5.1.1",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./http": {
"types": "./dist/http.d.ts",
"import": "./dist/http.js"
},
"./ndjson": {
"types": "./dist/ndjson.d.ts",
"import": "./dist/ndjson.js"
}
},
"scripts": {
"build": "rm -rf dist && tsgo -b tsconfig.json",
"format": "prettier --write src test",
"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.8.0",
"@typescript/native-preview": "7.0.0-dev.20260515.1",
"prettier": "^3.8.3",
"rouzer": "link:.",
"tsc-lint": "^0.1.9",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vitest": "^4.1.6",
"zod": "^4.4.3"
},
"dependencies": {
"@hattip/core": "^0.0.49",
"@remix-run/route-pattern": "^0.21.1",
"alien-middleware": "^0.11.6"
},
"prettier": "@alloc/prettier-config",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alloc/rouzer.git"
},
"files": [
"dist",
"docs",
"examples",
"README.md",
"!*.tsbuildinfo"
]
}