-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "elysia-autoload",
"version": "1.4.0",
"author": "kravetsone",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"description": "Plugin for Elysia which autoload all routes in directory and code-generate types for Eden with Bun.build support",
"homepage": "https://github.com/kravetsone/elysia-autoload",
"keywords": [
"bun",
"elysia",
"autoimports",
"autoload",
"nextjs",
"filerouter",
"autoroutes",
"eden",
"treaty",
"trpc",
"codegeneration"
],
"scripts": {
"prepublishOnly": "bun test && bunx pkgroll",
"lint": "bunx @biomejs/biome check src",
"lint:fix": "bun lint --apply"
},
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@elysiajs/eden": "^1.1.3",
"@elysiajs/swagger": "^1.1.1",
"@types/bun": "^1.1.9",
"elysia": "^1.1.13",
"pkgroll": "^2.5.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"elysia": "^1.1.0"
}
}