This repository was archived by the owner on May 8, 2026. It is now read-only.
-
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.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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": "@snapback/infrastructure",
"version": "0.1.2",
"description": "Production-grade observability toolkit - structured logging, distributed tracing, and performance monitoring for TypeScript applications",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Marcelle-Labs/snapback.dev.git",
"directory": "packages-oss/infrastructure"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup && tsc --build",
"check": "biome check .",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@snapback-oss/contracts": "workspace:*",
"pino": "catalog:",
"nanoid": "catalog:"
},
"devDependencies": {
"@snapback/tsconfig": "workspace:*",
"@types/node": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./logging": {
"types": "./dist/logging/logger.d.ts",
"default": "./dist/logging/logger.js"
},
"./metrics": {
"types": "./dist/metrics/index.d.ts",
"default": "./dist/metrics/index.js"
},
"./tracing": {
"types": "./dist/tracing/index.d.ts",
"default": "./dist/tracing/index.js"
}
}
}