@chrryai/waffles 2.2.79 → 2.2.86

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 +14 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrryai/waffles",
3
- "version": "2.2.79",
3
+ "version": "2.2.86",
4
4
  "description": "Production-ready Playwright testing utilities and helpers for modern web apps",
5
5
  "keywords": [
6
6
  "automation",
@@ -21,11 +21,7 @@
21
21
  "type": "git",
22
22
  "url": "https://github.com/chrryai/waffles.git"
23
23
  },
24
- "files": [
25
- "dist",
26
- "README.md",
27
- "LICENSE"
28
- ],
24
+ "files": ["dist", "README.md", "LICENSE"],
29
25
  "sideEffects": false,
30
26
  "main": "./dist/index.js",
31
27
  "module": "./dist/index.mjs",
@@ -40,6 +36,15 @@
40
36
  "publishConfig": {
41
37
  "access": "public"
42
38
  },
39
+ "scripts": {
40
+ "build": "pnpm exec tsup",
41
+ "dev": "pnpm exec tsup --watch",
42
+ "e": "pnpm exec playwright install chromium && playwright test critical.spec.ts --project chromium",
43
+ "e2e": "playwright test critical.spec.ts --project chromium",
44
+ "lint": "biome check .",
45
+ "sync-goals": "tsx src/scripts/sync-plausible-goals.ts",
46
+ "test:tauri": "TEST_URL=http://localhost:5173 playwright test --project tauri-macos"
47
+ },
43
48
  "dependencies": {
44
49
  "@faker-js/faker": "^9.3.0",
45
50
  "@playwright/test": "^1.49.1",
@@ -56,17 +61,8 @@
56
61
  "typescript": "^5.0.0"
57
62
  },
58
63
  "peerDependencies": {
64
+ "@chrryai/chrry": "workspace:*",
59
65
  "@playwright/test": "^1.40.0",
60
- "react": "^18.0.0 || ^19.0.0",
61
- "@chrryai/chrry": "2.2.79"
62
- },
63
- "scripts": {
64
- "build": "pnpm exec tsup",
65
- "dev": "pnpm exec tsup --watch",
66
- "e": "pnpm exec playwright install chromium && playwright test critical.spec.ts --project chromium",
67
- "e2e": "playwright test critical.spec.ts --project chromium",
68
- "lint": "biome check .",
69
- "sync-goals": "tsx src/scripts/sync-plausible-goals.ts",
70
- "test:tauri": "TEST_URL=http://localhost:5173 playwright test --project tauri-macos"
66
+ "react": "^18.0.0 || ^19.0.0"
71
67
  }
72
- }
68
+ }