ex-pw 0.0.1
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/LICENSE +21 -0
- package/README.md +690 -0
- package/dist/index.d.mts +1116 -0
- package/dist/index.d.ts +1116 -0
- package/dist/index.js +1735 -0
- package/dist/index.mjs +1663 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ex-pw",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Extended Playwright expect matchers with auto-waiting and improved developer experience",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
21
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
22
|
+
"test": "playwright test",
|
|
23
|
+
"lint": "eslint src --ext .ts",
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"release:patch": "npm version patch -m 'chore: release %s'",
|
|
26
|
+
"release:minor": "npm version minor -m 'chore: release %s'",
|
|
27
|
+
"release:major": "npm version major -m 'chore: release %s'",
|
|
28
|
+
"publish:latest": "npm publish --access public",
|
|
29
|
+
"publish:next": "npm publish --access public --tag next"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"playwright",
|
|
33
|
+
"testing",
|
|
34
|
+
"expect",
|
|
35
|
+
"matchers",
|
|
36
|
+
"assertions",
|
|
37
|
+
"e2e",
|
|
38
|
+
"automation"
|
|
39
|
+
],
|
|
40
|
+
"author": "Yevhen Laichenkov<elaichenkov@gmail.com>",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"@playwright/test": ">=1.40.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@playwright/test": "^1.40.0",
|
|
47
|
+
"@types/node": "^20.10.0",
|
|
48
|
+
"tsup": "^8.0.0",
|
|
49
|
+
"typescript": "^5.3.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"zod": "^3.22.0"
|
|
53
|
+
}
|
|
54
|
+
}
|