@testrelic/playwright-analytics 2.1.0 → 2.1.2

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.
Files changed (1) hide show
  1. package/package.json +13 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testrelic/playwright-analytics",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Playwright test analytics reporter with E2E navigation tracking, API call capture, network stats, failure diagnostics, and interactive HTML reports",
5
5
  "keywords": [
6
6
  "playwright",
@@ -22,14 +22,6 @@
22
22
  "playwright-reporter"
23
23
  ],
24
24
  "author": "TestRelic AI <hello@testrelic.ai>",
25
- "repository": {
26
- "type": "git",
27
- "url": "https://github.com/testrelic-ai/testrelic-js-sdk.git",
28
- "directory": "packages/playwright-analytics"
29
- },
30
- "bugs": {
31
- "url": "https://github.com/testrelic-ai/testrelic-js-sdk/issues"
32
- },
33
25
  "type": "module",
34
26
  "main": "./dist/index.cjs",
35
27
  "module": "./dist/index.js",
@@ -85,20 +77,11 @@
85
77
  "timeline-schema.json",
86
78
  "README.md"
87
79
  ],
88
- "scripts": {
89
- "build": "tsup",
90
- "test": "vitest run --exclude '**/e2e/**'",
91
- "test:watch": "vitest",
92
- "test:integration": "vitest run --config vitest.integration.config.ts",
93
- "typecheck": "tsc --noEmit",
94
- "test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
95
- "test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
96
- },
97
80
  "peerDependencies": {
98
81
  "@playwright/test": ">=1.35.0"
99
82
  },
100
83
  "dependencies": {
101
- "@testrelic/core": "workspace:*"
84
+ "@testrelic/core": "2.1.2"
102
85
  },
103
86
  "devDependencies": {
104
87
  "@playwright/test": "^1.35.0",
@@ -111,5 +94,14 @@
111
94
  "node": ">=18"
112
95
  },
113
96
  "license": "MIT",
114
- "homepage": "https://testrelic.ai"
115
- }
97
+ "homepage": "https://testrelic.ai",
98
+ "scripts": {
99
+ "build": "tsup",
100
+ "test": "vitest run --exclude '**/e2e/**'",
101
+ "test:watch": "vitest",
102
+ "test:integration": "vitest run --config vitest.integration.config.ts",
103
+ "typecheck": "tsc --noEmit",
104
+ "test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
105
+ "test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
106
+ }
107
+ }