-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
58
59
60
61
62
63
{
"name": "@bedrockio/logger",
"version": "1.3.1",
"description": "Structured logger for Bedrock applications.",
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint",
"build": "scripts/build",
"types": "tsc",
"prepublishOnly": "yarn build && yarn types"
},
"main": "./dist/cjs/index.js",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"contributors": [
{
"name": "Kaare Larsen",
"email": "kaare@rekall.ai"
},
{
"name": "Andrew Plummer",
"email": "andrew@rekall.ai"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bedrockio/logger"
},
"dependencies": {
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.4.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^1.29.0",
"@opentelemetry/instrumentation": "^0.56.0",
"@opentelemetry/instrumentation-http": "^0.56.0",
"@opentelemetry/instrumentation-koa": "^0.46.0",
"@opentelemetry/instrumentation-mongoose": "^0.45.0",
"@opentelemetry/resources": "^1.29.0",
"@opentelemetry/sdk-trace-base": "^1.29.0",
"@opentelemetry/sdk-trace-node": "^1.29.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"bytes": "^3.1.2",
"kleur": "^4.1.5",
"stdout-stream": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@bedrockio/prettier-config": "^1.0.2",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.33.0",
"eslint-plugin-bedrock": "^1.0.21",
"jest": "^29.4.1",
"koa": "^2.14.1",
"prettier-eslint": "^15.0.1"
},
"volta": {
"node": "22.12.0",
"yarn": "1.22.22"
}
}