-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "orpc-file-based-router",
"version": "0.1.7",
"description": "File-based router plugin for oRPC - automatically generate oRPC router from your file structure",
"author": "zeeeeby",
"license": "MIT",
"homepage": "https://github.com/zeeeeby/orpc-file-based-router",
"repository": {
"type": "git",
"url": "git+https://github.com/zeeeeby/orpc-file-based-router.git"
},
"bugs": {
"url": "https://github.com/zeeeeby/orpc-file-based-router/issues"
},
"keywords": [
"orpc",
"router",
"file-based-routing",
"plugin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run type-check && unbuild",
"type-check": "tsc --noEmit",
"playground": "tsx playground/src/generator.ts"
},
"devDependencies": {
"@orpc/client": "^1.8.5",
"@orpc/server": "^1.8.5",
"@types/node": "^22.14.0",
"unbuild": "^3.5.0",
"vitest": "^3.2.4",
"zod": "^4.1.3"
}
}