@stablyai/playwright-test 0.1.7-next → 0.1.7-next.11

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/cli.js CHANGED
@@ -1,2 +1,4 @@
1
+ #!/usr/bin/env node
2
+
1
3
  const { program } = require("@stablyai/internal-playwright-test");
2
4
  program.parse(process.argv);
@@ -53,4 +53,4 @@ var expect = import_internal_playwright_test.expect.extend(import_playwright_bas
53
53
  test,
54
54
  ...require("@stablyai/internal-playwright-test")
55
55
  });
56
- //# sourceMappingURL=index.js.map
56
+ //# sourceMappingURL=index.cjs.map
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@stablyai/playwright-test",
3
- "version": "0.1.7-next",
3
+ "version": "0.1.7-next.11",
4
4
  "description": "Playwright Test wrapper with Stably AI matchers",
5
- "main": "dist/index.js",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.mjs",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.mjs",
10
+ "require": "./dist/index.cjs"
11
+ }
12
+ },
6
13
  "types": "dist/index.d.ts",
7
14
  "bin": {
8
15
  "playwright": "cli.js"
@@ -12,15 +19,9 @@
12
19
  "cli.js"
13
20
  ],
14
21
  "dependencies": {
15
- "@stablyai/internal-playwright-test": "0.1.7",
16
- "@stablyai/playwright": "latest",
17
- "@stablyai/playwright-base": "latest"
18
- },
19
- "devDependencies": {
20
- "tsup": "^8.5.0"
21
- },
22
- "peerDependencies": {
23
- "zod": "^3.25.0 || ^4.0.0"
22
+ "@stablyai/internal-playwright-test": "0.1.10",
23
+ "@stablyai/playwright": "0.1.7-next.11",
24
+ "@stablyai/playwright-base": "0.1.7-next.11"
24
25
  },
25
26
  "scripts": {
26
27
  "build": "tsup --config tsup.config.ts"
File without changes