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 ADDED
@@ -0,0 +1,9 @@
1
+ # loggily
2
+
3
+ Structured logging with context, levels, and formatting — the logger that gets out of your way.
4
+
5
+ **Coming soon.**
6
+
7
+ ## License
8
+
9
+ MIT
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"