loggily 0.4.0 → 0.4.2
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/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loggily",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "TypeScript logger with debug-style namespaces, structured JSON output, and lightweight spans. Disabled logs skip argument evaluation via optional chaining.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"browser",
|
|
@@ -29,32 +29,31 @@
|
|
|
29
29
|
"url": "https://github.com/beorn/loggily.git"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
|
-
"src"
|
|
33
|
-
"dist"
|
|
32
|
+
"src"
|
|
34
33
|
],
|
|
35
34
|
"type": "module",
|
|
36
35
|
"module": "src/index.ts",
|
|
37
|
-
"types": "./
|
|
36
|
+
"types": "./src/index.ts",
|
|
38
37
|
"exports": {
|
|
39
38
|
".": {
|
|
40
|
-
"types": "./
|
|
39
|
+
"types": "./src/index.ts",
|
|
41
40
|
"browser": "./src/index.browser.ts",
|
|
42
41
|
"default": "./src/index.ts"
|
|
43
42
|
},
|
|
44
43
|
"./file-writer": {
|
|
45
|
-
"types": "./
|
|
44
|
+
"types": "./src/file-writer.ts",
|
|
46
45
|
"default": "./src/file-writer.ts"
|
|
47
46
|
},
|
|
48
47
|
"./worker": {
|
|
49
|
-
"types": "./
|
|
48
|
+
"types": "./src/worker.ts",
|
|
50
49
|
"default": "./src/worker.ts"
|
|
51
50
|
},
|
|
52
51
|
"./context": {
|
|
53
|
-
"types": "./
|
|
52
|
+
"types": "./src/context.ts",
|
|
54
53
|
"default": "./src/context.ts"
|
|
55
54
|
},
|
|
56
55
|
"./tracing": {
|
|
57
|
-
"types": "./
|
|
56
|
+
"types": "./src/tracing.ts",
|
|
58
57
|
"default": "./src/tracing.ts"
|
|
59
58
|
}
|
|
60
59
|
},
|
|
@@ -70,8 +69,12 @@
|
|
|
70
69
|
"docs:preview": "vitepress preview docs"
|
|
71
70
|
},
|
|
72
71
|
"devDependencies": {
|
|
73
|
-
"@types/node": "^25.
|
|
74
|
-
"vitepress": "^1.6.
|
|
75
|
-
"vitest": "^4.
|
|
72
|
+
"@types/node": "^25.5.0",
|
|
73
|
+
"vitepress": "^1.6.4",
|
|
74
|
+
"vitest": "^4.1.1"
|
|
75
|
+
},
|
|
76
|
+
"engines": {
|
|
77
|
+
"bun": ">=1.0",
|
|
78
|
+
"node": ">=23.6.0"
|
|
76
79
|
}
|
|
77
80
|
}
|