forked from wobsoriano/elysia-autoroutes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "elysia-autoroutes",
"version": "0.2.2",
"description": "File system routing for Elysia.",
"author": "Robert Soriano <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/elysia-autoroutes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/elysia-autoroutes.git"
},
"bugs": "https://github.com/wobsoriano/elysia-autoroutes/issues",
"keywords": [
"bun"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "bun run ./playground/index.ts",
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"lint": "eslint .",
"release": "bumpp && npm publish",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"elysia": ">=0.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.0",
"bumpp": "^9.1.1",
"bun-plugin-dts": "^0.1.0",
"bun-types": "^0.7.2",
"elysia": "^0.6.0",
"eslint": "^8.46.0",
"eslint-plugin-import": "^2.28.0",
"typescript": "5.1.6"
}
}