@octaviaflow/logger 1.0.1 → 1.1.0
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 +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octaviaflow/logger",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Production-ready, high-performance logger for Octaviaflow microservices",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -42,7 +42,9 @@
|
|
|
42
42
|
"example:backend": "bun run examples/backend.ts",
|
|
43
43
|
"example:engine": "bun run examples/engine.ts",
|
|
44
44
|
"example:ui": "bun run examples/ui.ts",
|
|
45
|
-
"benchmark": "bun run tests/benchmark.ts"
|
|
45
|
+
"benchmark": "bun run tests/benchmark.ts",
|
|
46
|
+
"prepublishOnly": "bun run build && bun run test && bun run typecheck",
|
|
47
|
+
"publish": "npm publish --access public"
|
|
46
48
|
},
|
|
47
49
|
"keywords": [
|
|
48
50
|
"logger",
|
|
@@ -58,6 +60,9 @@
|
|
|
58
60
|
"author": "Octaviaflow Team",
|
|
59
61
|
"license": "MIT",
|
|
60
62
|
"private": false,
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public"
|
|
65
|
+
},
|
|
61
66
|
"devDependencies": {
|
|
62
67
|
"@types/bun": "^1.1.13",
|
|
63
68
|
"@types/node": "^22.10.1",
|