-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.05 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
{
"name": "@equinor/fusion-framework-module-analytics",
"version": "3.0.4",
"description": "Fusion module for collecting and exporting application analytics using OpenTelemetry standards",
"main": "dist/esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./adapters": {
"import": "./dist/esm/adapters/index.js",
"types": "./dist/types/adapters/index.d.ts"
},
"./collectors": {
"import": "./dist/esm/collectors/index.js",
"types": "./dist/types/collectors/index.d.ts"
},
"./logExporters": {
"import": "./dist/esm/logExporters/index.js",
"types": "./dist/types/logExporters/index.d.ts"
}
},
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc -b",
"prepack": "pnpm build",
"test": "vitest"
},
"keywords": [
"analytics",
"fusion",
"utility"
],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/fusion-framework.git",
"directory": "packages/modules/analytics"
},
"dependencies": {
"@equinor/fusion-framework-module": "workspace:*",
"@equinor/fusion-framework-module-app": "workspace:*",
"@equinor/fusion-framework-module-context": "workspace:*",
"@equinor/fusion-framework-module-event": "workspace:*",
"@equinor/fusion-framework-module-http": "workspace:*",
"@opentelemetry/api-logs": "^0.221.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.221.0",
"@opentelemetry/otlp-exporter-base": "^0.221.0",
"@opentelemetry/otlp-transformer": "^0.221.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-logs": "^0.221.0",
"deepmerge": "^4.3.1",
"rxjs": "^7.8.1",
"uuid": "^14.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@equinor/fusion-observable": "workspace:^",
"typescript": "^7.0.2",
"vitest": "^4.1.0"
},
"peerDependencies": {
"@equinor/fusion-observable": "workspace:*"
}
}