-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 961 Bytes
/
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
{
"name": "@chneau/elysia-logger",
"version": "1.0.9",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Elysia logger plugin",
"keywords": ["elysia", "logger"],
"author": "chneau",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chneau/elysia-logger.git"
},
"files": ["dist"],
"scripts": {
"build": "bun _build.ts",
"npm:fix": "npm pkg fix",
"npm:publish": "bun run build && bun publish",
"npm:publish:dry-run": "bun run build && bun publish --dry-run",
"upgrade": "bun update --latest",
"check": "deno fmt --use-tabs --quiet; oxlint --fix-dangerously --quiet; biome check --write --unsafe .",
"lint": "tsc",
"clean": "rm -rf dist",
"test": "bun test --watch",
"all": "bun run upgrade; bun run check; bun run lint"
},
"dependencies": {
"elysia": "^1.1.24"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"bun-plugin-dts": "^0.3.0",
"typescript": "^5.6.3"
}
}