-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.5 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.5 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "highlight.run",
"version": "9.16.2",
"description": "Open source, fullstack monitoring. Capture frontend errors, record server side logs, and visualize what broke with session replay.",
"keywords": [
"highlight",
"session replay",
"error monitoring",
"logging",
"debugging",
"observability",
"browser",
"library"
],
"homepage": "https://github.com/highlight/highlight#readme",
"bugs": {
"url": "https://github.com/highlight/highlight/issues",
"email": "support@highlight.io"
},
"license": "Apache-2.0",
"repository": {
"repository": {
"type": "git",
"url": "https://github.com/highlight/highlight.git"
}
},
"scripts": {
"build": "yarn typegen && vite build && yarn build:umd",
"build:umd": "cp dist/index.umd.cjs dist/index.umd.js",
"build:watch": "vite build --watch",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "run-p dev:server dev:watch",
"dev:server": "vite dev",
"dev:watch": "yarn build:watch",
"enforce-size": "size-limit",
"test": "vitest --run",
"test:watch": "vitest",
"typegen": "tsc && node scripts/replace-client-imports.mjs"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./dist/highlight-run/src/index.d.ts",
"exports": {
"types": "./dist/highlight-run/src/index.d.ts",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": ">=0.57.1",
"@opentelemetry/exporter-trace-otlp-http": ">=0.57.1",
"@opentelemetry/instrumentation": ">=0.57.1",
"@opentelemetry/instrumentation-document-load": ">=0.44.0",
"@opentelemetry/instrumentation-fetch": ">=0.57.1",
"@opentelemetry/instrumentation-user-interaction": ">=0.44.0",
"@opentelemetry/instrumentation-xml-http-request": ">=0.57.1",
"@opentelemetry/otlp-exporter-base": ">=0.57.1",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-metrics": "^1.30.1",
"@opentelemetry/sdk-trace-web": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.28.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rrweb/rrweb-plugin-sequential-id-record": "workspace:*",
"@rrweb/types": "workspace:*",
"@size-limit/file": "^8.1.0",
"@types/chrome": "^0.0.268",
"@types/js-cookie": "^3.0.6",
"@types/json-stringify-safe": "^5.0.3",
"@types/node": "^16.3.1",
"@vitest/web-worker": "^1.6.0",
"error-stack-parser": "2.0.6",
"fflate": "^0.8.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"js-cookie": "^3.0.5",
"json-stringify-safe": "^5.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"readdirp": "^3.6.0",
"rrweb": "workspace:*",
"size-limit": "^8.1.0",
"stacktrace-js": "2.0.2",
"tslib": "^2.6.2",
"typescript": "^5.0.4",
"vite": "^5.2.12",
"vitest": "^1.6.0",
"vitest-canvas-mock": "^0.3.3",
"web-vitals": "^3.5.0",
"zone.js": "^0.15.0"
},
"size-limit": [
{
"path": [
"dist/*.js",
"!dist/*.umd.js"
],
"limit": "256 kB",
"brotli": true
}
]
}