@dws-std/logger 1.0.0 → 1.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.
Files changed (1) hide show
  1. package/package.json +55 -55
package/package.json CHANGED
@@ -1,57 +1,57 @@
1
1
  {
2
- "name": "@dws-std/logger",
3
- "version": "1.0.0",
4
- "description": "Type-safe logging library for Bun, modular sink pattern, transform streams, and immutable API design.",
5
- "keywords": [
6
- "bun",
7
- "dws",
8
- "open-source",
9
- "types",
10
- "typescript",
11
- "utilities"
12
- ],
13
- "license": "MIT",
14
- "author": "Dominus Web Services (DWS)",
15
- "repository": {
16
- "type": "git",
17
- "url": "https://github.com/Dominus-Web-Service/std",
18
- "directory": "packages/logger"
19
- },
20
- "files": [
21
- "dist"
22
- ],
23
- "type": "module",
24
- "exports": {
25
- ".": {
26
- "types": "./dist/index.d.ts",
27
- "default": "./dist/index.js"
28
- }
29
- },
30
- "scripts": {
31
- "build": "bun builder.ts",
32
- "docs": "bunx typedoc --tsconfig tsconfig.build.json",
33
- "fmt:check": "oxfmt --check",
34
- "fmt": "oxfmt",
35
- "lint:fix": "oxlint --type-aware --type-check --fix ./src",
36
- "lint:github": "oxlint --type-aware --type-check --format=github ./src",
37
- "lint": "oxlint --type-aware --type-check ./src",
38
- "test": "bun test --pass-with-no-tests --coverage"
39
- },
40
- "dependencies": {
41
- "@dws-std/common": "workspace:^",
42
- "@dws-std/error": "workspace:^"
43
- },
44
- "devDependencies": {
45
- "@types/bun": "catalog:base",
46
- "mitata": "^1.0.34",
47
- "oxfmt": "catalog:base",
48
- "oxlint": "catalog:base",
49
- "oxlint-tsgolint": "catalog:base",
50
- "pino": "^10.3.1",
51
- "typescript": "catalog:base"
52
- },
53
- "peerDependencies": {
54
- "@dws-std/common": "workspace:^",
55
- "@dws-std/error": "workspace:^"
56
- }
2
+ "name": "@dws-std/logger",
3
+ "version": "1.0.1",
4
+ "description": "Type-safe logging library for Bun, modular sink pattern, transform streams, and immutable API design.",
5
+ "keywords": [
6
+ "bun",
7
+ "dws",
8
+ "open-source",
9
+ "types",
10
+ "typescript",
11
+ "utilities"
12
+ ],
13
+ "license": "MIT",
14
+ "author": "Dominus Web Services (DWS)",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/Dominus-Web-Service/std",
18
+ "directory": "packages/logger"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "type": "module",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ }
29
+ },
30
+ "scripts": {
31
+ "build": "bun builder.ts",
32
+ "docs": "bunx typedoc --tsconfig tsconfig.build.json",
33
+ "fmt:check": "oxfmt --check",
34
+ "fmt": "oxfmt",
35
+ "lint:fix": "oxlint --type-aware --type-check --fix ./src",
36
+ "lint:github": "oxlint --type-aware --type-check --format=github ./src",
37
+ "lint": "oxlint --type-aware --type-check ./src",
38
+ "test": "bun test --pass-with-no-tests --coverage"
39
+ },
40
+ "dependencies": {
41
+ "@dws-std/common": "^1.3.1",
42
+ "@dws-std/error": "^2.3.1"
43
+ },
44
+ "devDependencies": {
45
+ "@types/bun": "^1.3.14",
46
+ "mitata": "^1.0.34",
47
+ "oxfmt": "0.56.0",
48
+ "oxlint": "1.71.0",
49
+ "oxlint-tsgolint": "0.23.0",
50
+ "pino": "^10.3.1",
51
+ "typescript": "^6.0.3"
52
+ },
53
+ "peerDependencies": {
54
+ "@dws-std/common": "^1.3.1",
55
+ "@dws-std/error": "^2.3.1"
56
+ }
57
57
  }