forked from kravetsone/elysia-autoload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "elysia-autoload",
"version": "1.2.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",
"prepare": "bunx husky"
},
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@elysiajs/eden": "^1.1.0",
"@elysiajs/swagger": "^1.1.0",
"@types/bun": "^1.1.6",
"elysia": "^1.1.2",
"pkgroll": "^2.1.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"elysia": "^1.1.0"
}
}