-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.65 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
{
"name": "@astrot1988/otlp",
"version": "1.0.6",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./decorators": {
"import": "./dist/decorators/index.js",
"types": "./dist/decorators/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "tsx src/__tests__/all.test.ts",
"test:decorators": "tsx src/__tests__/decorators-manual.test.ts",
"test:integration": "tsx src/__tests__/integration.test.ts",
"test:all": "npm test && npm run test:decorators && npm run test:integration",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/auto-instrumentations-web": "^0.37.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.49.1",
"@opentelemetry/instrumentation": "^0.49.1",
"@opentelemetry/instrumentation-document-load": "^0.47.0",
"@opentelemetry/instrumentation-fetch": "^0.49.1",
"@opentelemetry/instrumentation-user-interaction": "^0.47.0",
"@opentelemetry/instrumentation-xml-http-request": "^0.49.1",
"@opentelemetry/resources": "^1.22.0",
"@opentelemetry/sdk-trace-web": "^1.22.0",
"@opentelemetry/semantic-conventions": "^1.22.0"
},
"devDependencies": {
"@swc/core": "^1.3.0",
"@types/node": "^20.0.0",
"tsup": "^8.5.0",
"tsx": "^4.0.0",
"typescript": "^5.8.3"
}
}