-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "@kurrent/opentelemetry",
"version": "1.1.1",
"description": "KurrentDB NodeJS Client SDK interceptors for tracing with OpenTelemetry",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"author": "Kurrent, Inc",
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc --build",
"build:watch": "pnpm run build:ts-watch",
"build:ts-watch": "tsc --build --watch",
"clean": "yarn clean:dist && yarn clean:buildinfo",
"clean:dist": "shx rm -rf ./dist",
"clean:buildinfo": "shx rm -rf *.tsbuildinfo"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kurrent-io/KurrentDB-Client-NodeJS.git"
},
"keywords": [
"Kurrent",
"EventSourcing",
"OpenTelemetry"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/instrumentation": "^0.56.0"
},
"peerDependencies": {
"@kurrent/kurrentdb-client": "^1"
},
"devDependencies": {
"@kurrent/kurrentdb-client": "workspace:^"
}
}