-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.26 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@tracekit/node-apm",
"version": "1.7.1",
"description": "TraceKit APM for Node.js - Zero-config distributed tracing and code monitoring for Express and NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"keywords": [
"tracekit",
"apm",
"tracing",
"monitoring",
"opentelemetry",
"express",
"nestjs",
"performance",
"observability"
],
"author": "TraceKit <support@tracekit.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Tracekit-Dev/node-apm.git"
},
"bugs": {
"url": "https://github.com/Tracekit-Dev/node-apm/issues"
},
"homepage": "https://tracekit.dev",
"dependencies": {
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.46.0",
"@opentelemetry/instrumentation": "^0.56.0",
"@opentelemetry/instrumentation-fetch": "^0.56.0",
"@opentelemetry/instrumentation-http": "^0.56.0",
"@opentelemetry/instrumentation-mongodb": "^0.49.0",
"@opentelemetry/instrumentation-mysql": "^0.42.0",
"@opentelemetry/instrumentation-mysql2": "^0.42.0",
"@opentelemetry/instrumentation-pg": "^0.49.0",
"@opentelemetry/instrumentation-redis-4": "^0.42.0",
"@opentelemetry/resources": "^1.19.0",
"@opentelemetry/sdk-trace-node": "^1.19.0",
"@opentelemetry/semantic-conventions": "^1.19.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"express": "^4.18.0 || ^5.0.0",
"rxjs": "^7.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"@nestjs/common": {
"optional": true
},
"@nestjs/core": {
"optional": true
},
"rxjs": {
"optional": true
}
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"express": "^4.18.0",
"jest": "^30.2.0",
"rxjs": "^7.8.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}