-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@goobits/logger",
"version": "1.1.0",
"description": "Production-ready structured logger with a pluggable interface, AsyncLocalStorage context propagation, and module-scoped log levels. Drop-in implementation of the Logger interface used across @goobits/* packages.",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./context": "./src/context.ts",
"./helpers": "./src/helpers.ts"
},
"keywords": [
"logger",
"logging",
"structured-logging",
"sveltekit",
"async-local-storage",
"context-propagation",
"esm",
"typescript"
],
"author": "Goobits",
"license": "MIT",
"homepage": "https://github.com/goobits/logger#readme",
"bugs": "https://github.com/goobits/logger/issues",
"repository": {
"type": "git",
"url": "https://github.com/goobits/logger.git"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.13.1",
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.0.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf node_modules .turbo"
}
}