-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "logestic",
"version": "1.2.4",
"author": "Nishant Aanjaney Jalan <[email protected]>",
"description": "An advanced and customisable logging library for ElysiaJS",
"keywords": [
"logging",
"logger",
"elysia",
"elysiajs",
"middleware"
],
"homepage": "https://github.com/cybercoder-naj/logestic.git",
"bugs": "https://github.com/cybercoder-naj/logestic/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cybercoder-naj/logestic.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"scripts": {
"build": "rimraf dist && bun build src/index.ts --outdir dist --target bun --minify-syntax --minify-whitespace -e elysia && tsc",
"test": "bun test",
"preview": "bun run --cwd preview dev",
"prepublishOnly": "bun run build && { echo '/*'; cat LICENSE; echo '*/'; cat dist/index.js; } > /tmp/index.js && mv /tmp/index.js dist/index.js"
},
"peerDependencies": {
"typescript": "^5.0.0",
"elysia": "^1.1.3"
},
"devDependencies": {
"@elysiajs/eden": "1.0.7",
"bun-types": "latest",
"elysia": "^1.1.3",
"rimraf": "^5.0.5",
"typescript": "^5.4.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0"
}
}