@checkly/playwright-reporter 1.2.0 → 1.3.0

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/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "@checkly/playwright-reporter",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Standalone Playwright reporter for Checkly - compatible with Playwright 1.40-1.57+",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./src/index.ts",
10
+ "development": "./src/index.ts",
11
+ "default": "./dist/index.js"
12
+ },
13
+ "./types": {
14
+ "types": "./src/types/index.ts",
15
+ "development": "./src/types/index.ts",
16
+ "default": "./dist/types/index.js"
17
+ }
18
+ },
7
19
  "files": [
8
20
  "dist",
9
21
  "README.md",
@@ -20,29 +32,42 @@
20
32
  "license": "Apache-2.0",
21
33
  "repository": {
22
34
  "type": "git",
23
- "url": "https://github.com/checkly/checkly-playwright-reporter.git",
24
- "directory": "packages/reporter"
35
+ "url": "https://github.com/checkly/checkly-playwright-reporter.git"
25
36
  },
26
37
  "dependencies": {
27
38
  "axios": "1.12.2",
39
+ "fflate": "0.8.2",
28
40
  "form-data": "4.0.4"
29
41
  },
30
42
  "peerDependencies": {
31
43
  "@playwright/test": ">=1.40.0"
32
44
  },
33
45
  "devDependencies": {
46
+ "@biomejs/biome": "2.3.11",
34
47
  "@playwright/test": "1.57.0",
48
+ "@types/adm-zip": "0.5.7",
49
+ "@types/node": "24.7.2",
50
+ "adm-zip": "0.5.16",
35
51
  "tsup": "8.5.1",
36
52
  "tsx": "4.19.0",
37
53
  "typescript": "5.9.3",
38
- "@checkly/reporter-utils": "1.2.0"
54
+ "vitest": "4.0.17"
39
55
  },
40
56
  "scripts": {
41
- "build": "tsup",
57
+ "build": "tsup && node scripts/obfuscate.mjs",
58
+ "test": "vitest run",
59
+ "test:changed": "vitest run --changed",
60
+ "test:watch": "vitest watch",
42
61
  "test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
43
62
  "test:integration": "playwright test -c src/__tests__/integration/playwright.config.ts",
44
63
  "test:integration:validate": "tsx src/__tests__/integration/validate-baseline.ts",
45
64
  "test:pw-version": "./scripts/test-pw-version.sh",
46
- "test:pw-matrix": "./scripts/test-pw-version.sh all"
65
+ "test:pw-matrix": "./scripts/test-pw-version.sh all",
66
+ "typecheck": "tsc --noEmit",
67
+ "format": "biome check --write --no-errors-on-unmatched",
68
+ "lint": "biome lint",
69
+ "lint:fix": "biome lint --write",
70
+ "lint:ci": "biome ci --reporter=github",
71
+ "clean": "rm -rf dist *.zip"
47
72
  }
48
73
  }