-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "elysia-autoload",
"version": "1.5.1",
"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.4",
"@elysiajs/eden": "^1.2.0",
"@elysiajs/swagger": "^1.2.0",
"@types/bun": "^1.1.15",
"@types/node": "^22.10.5",
"elysia": "^1.2.10",
"pkgroll": "^2.6.1",
"typescript": "^5.7.2",
"@elysiajs/node": "^1.2.3"
},
"peerDependencies": {
"elysia": "^1.2.0"
},
"engines": {
"node": ">=22",
"bun": ">=1.0.0"
}
}