loggily 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +16 -0
- package/src/index.ts +1 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "loggily",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Structured logging with context, levels, and formatting — the logger that gets out of your way",
|
|
5
|
+
"keywords": ["logging", "logger", "structured", "debug", "log"],
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Bjørn Stabell <bjorn@stabell.org>",
|
|
8
|
+
"homepage": "https://github.com/beorn/loggily",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/beorn/loggily.git"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "src/index.ts",
|
|
15
|
+
"files": ["src", "README.md"]
|
|
16
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const VERSION = "0.0.1"
|