-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1003 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
36
37
38
39
40
41
42
43
{
"name": "@theyudhiztira/loggage",
"description": "A simple logger for your typescript project built with Bun!",
"version": "0.1.0",
"license": "MIT",
"author": "Pandu Yudhistira",
"module": "src/index.ts",
"keywords": [
"elysia",
"logger",
"bun",
"bun logger",
"elysia logger"
],
"files": [
"dist"
],
"main": "dist/index.ts",
"types": "src/loggage.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theyudhiztira/loggage.git"
},
"scripts": {
"dev": "bun run --watch example/example.ts",
"build": "rm -rf dist && bun build src/index.ts --outdir ./dist --target bun --minify && tsc"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@google-cloud/logging": "^11.2.0"
}
}