@openreplay/tracker 18.1.2 → 18.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/entry.js +135 -138
- package/dist/cjs/entry.js.map +1 -1
- package/dist/cjs/index.js +135 -138
- package/dist/cjs/index.js.map +1 -1
- package/dist/lib/entry.js +135 -138
- package/dist/lib/entry.js.map +1 -1
- package/dist/lib/index.js +135 -138
- package/dist/lib/index.js.map +1 -1
- package/package.json +19 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openreplay/tracker",
|
|
3
3
|
"description": "The OpenReplay tracker main package",
|
|
4
|
-
"version": "18.1.
|
|
4
|
+
"version": "18.1.3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logging",
|
|
7
7
|
"replay"
|
|
@@ -43,40 +43,41 @@
|
|
|
43
43
|
"build:common": "tsc -b src/common",
|
|
44
44
|
"compile": "tsc --project src/main/tsconfig.json",
|
|
45
45
|
"create-types": "mkdir dist/lib/ dist/cjs && cp -r dist/types/* dist/lib/ && cp -r dist/types/* dist/cjs/",
|
|
46
|
-
"build": "bun run clean && bun compile && bun create-types && rollup --config rollup.config.js",
|
|
46
|
+
"build": "bun run clean && bun run compile && bun run create-types && rollup --config rollup.config.js",
|
|
47
|
+
"build:fast": "bun run compile && rollup --config rollup.config.js",
|
|
47
48
|
"test": "jest --coverage=false",
|
|
48
49
|
"test:ci": "jest --coverage=true",
|
|
49
50
|
"postversion": "bun run build",
|
|
50
51
|
"prepublishOnly": "bun run test && bun run build"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
|
-
"@babel/core": "^7.29.
|
|
54
|
-
"@
|
|
54
|
+
"@babel/core": "^7.29.7",
|
|
55
|
+
"@babel/plugin-transform-modules-commonjs": "^7.29.7",
|
|
56
|
+
"@jest/globals": "^30.4.1",
|
|
55
57
|
"@rollup/plugin-babel": "^6.1.0",
|
|
56
|
-
"@rollup/plugin-commonjs": "^29.0.
|
|
58
|
+
"@rollup/plugin-commonjs": "^29.0.3",
|
|
57
59
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
58
60
|
"@rollup/plugin-replace": "^6.0.3",
|
|
59
|
-
"@rollup/plugin-terser": "0.
|
|
61
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
60
62
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
62
|
-
"@typescript-eslint/parser": "^8.
|
|
63
|
-
"eslint": "^9.39.
|
|
64
|
-
"eslint-config-prettier": "^
|
|
65
|
-
"eslint-plugin-prettier": "^5.5.
|
|
66
|
-
"jest": "^30.2
|
|
67
|
-
"jest-environment-jsdom": "^30.
|
|
68
|
-
"prettier": "^3.
|
|
69
|
-
"
|
|
70
|
-
"rollup": "^4.57.1",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^8.65.0",
|
|
64
|
+
"@typescript-eslint/parser": "^8.65.0",
|
|
65
|
+
"eslint": "^9.39.5",
|
|
66
|
+
"eslint-config-prettier": "^10.1.8",
|
|
67
|
+
"eslint-plugin-prettier": "^5.5.6",
|
|
68
|
+
"jest": "^30.4.2",
|
|
69
|
+
"jest-environment-jsdom": "^30.4.1",
|
|
70
|
+
"prettier": "^3.9.6",
|
|
71
|
+
"rollup": "^4.62.3",
|
|
71
72
|
"semver": "^6.3.0",
|
|
72
|
-
"ts-jest": "^29.4.
|
|
73
|
+
"ts-jest": "^29.4.12",
|
|
73
74
|
"tslib": "^2.8.1",
|
|
74
75
|
"typescript": "^5.9.3"
|
|
75
76
|
},
|
|
76
77
|
"dependencies": {
|
|
77
78
|
"@openreplay/network-proxy": "^1.2.5",
|
|
78
79
|
"error-stack-parser-es": "2.0.1",
|
|
79
|
-
"web-vitals": "^5.
|
|
80
|
+
"web-vitals": "^5.3.0"
|
|
80
81
|
},
|
|
81
82
|
"engines": {
|
|
82
83
|
"node": ">=14.0"
|