-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.53 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
{
"name": "@monoscopetech/browser",
"version": "0.11.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"unpkg": "dist/monoscope.umd.js",
"browser": "dist/monoscope.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"default": "./dist/react.js"
}
},
"scripts": {
"build": "npx tsc --build && rollup -c",
"test": "vitest run",
"test:e2e": "playwright test",
"lint": "eslint src --ext .ts",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-zone": "^2.0.1",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/exporter-logs-otlp-http": "^0.203.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
"@opentelemetry/instrumentation": "^0.203.0",
"@opentelemetry/instrumentation-document-load": "^0.48.0",
"@opentelemetry/instrumentation-fetch": "^0.203.0",
"@opentelemetry/instrumentation-user-interaction": "^0.58.0",
"@opentelemetry/instrumentation-xml-http-request": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@opentelemetry/sdk-trace-web": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.36.0",
"@rrweb/rrweb-plugin-console-record": "2.0.0-alpha.18",
"rrweb": "2.0.0-alpha.20",
"web-vitals": "^4.2.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/monoscope-tech/monoscope-web.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=17"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.0",
"buffer": "^5.5.0||^6.0.0",
"jsdom": "^29.0.1",
"rollup": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0",
"vitest": "^4.1.1"
}
}