playwright-checkpoint 0.1.0-beta.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/LICENSE +21 -0
- package/README.md +665 -0
- package/dist/chunk-DGUM43GV.js +11 -0
- package/dist/chunk-DGUM43GV.js.map +1 -0
- package/dist/chunk-F5A6XGLJ.js +104 -0
- package/dist/chunk-F5A6XGLJ.js.map +1 -0
- package/dist/chunk-K5DX32TO.js +214 -0
- package/dist/chunk-K5DX32TO.js.map +1 -0
- package/dist/chunk-KG37WSYS.js +1549 -0
- package/dist/chunk-KG37WSYS.js.map +1 -0
- package/dist/chunk-X5IPL32H.js +1484 -0
- package/dist/chunk-X5IPL32H.js.map +1 -0
- package/dist/cli/bin.cjs +3972 -0
- package/dist/cli/bin.cjs.map +1 -0
- package/dist/cli/bin.d.cts +1 -0
- package/dist/cli/bin.d.ts +1 -0
- package/dist/cli/bin.js +43 -0
- package/dist/cli/bin.js.map +1 -0
- package/dist/cli/index.cjs +1672 -0
- package/dist/cli/index.cjs.map +1 -0
- package/dist/cli/index.d.cts +31 -0
- package/dist/cli/index.d.ts +31 -0
- package/dist/cli/index.js +17 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/mcp-args.cjs +129 -0
- package/dist/cli/mcp-args.cjs.map +1 -0
- package/dist/cli/mcp-args.d.cts +32 -0
- package/dist/cli/mcp-args.d.ts +32 -0
- package/dist/cli/mcp-args.js +10 -0
- package/dist/cli/mcp-args.js.map +1 -0
- package/dist/components.cjs +53 -0
- package/dist/components.cjs.map +1 -0
- package/dist/components.d.cts +27 -0
- package/dist/components.d.ts +27 -0
- package/dist/components.js +26 -0
- package/dist/components.js.map +1 -0
- package/dist/core-CD4jHGgI.d.cts +51 -0
- package/dist/core-CZvnc0rE.d.ts +51 -0
- package/dist/core.cjs +1576 -0
- package/dist/core.cjs.map +1 -0
- package/dist/core.d.cts +3 -0
- package/dist/core.d.ts +3 -0
- package/dist/core.js +32 -0
- package/dist/core.js.map +1 -0
- package/dist/index-BjYQX_hK.d.ts +8 -0
- package/dist/index-Cabk31qi.d.cts +8 -0
- package/dist/index.cjs +3318 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +94 -0
- package/dist/index.d.ts +94 -0
- package/dist/index.js +285 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/index.cjs +3467 -0
- package/dist/mcp/index.cjs.map +1 -0
- package/dist/mcp/index.d.cts +26 -0
- package/dist/mcp/index.d.ts +26 -0
- package/dist/mcp/index.js +586 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/teardown.cjs +1509 -0
- package/dist/teardown.cjs.map +1 -0
- package/dist/teardown.d.cts +5 -0
- package/dist/teardown.d.ts +5 -0
- package/dist/teardown.js +52 -0
- package/dist/teardown.js.map +1 -0
- package/dist/types-G7w4n8kR.d.cts +359 -0
- package/dist/types-G7w4n8kR.d.ts +359 -0
- package/package.json +109 -0
package/package.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "playwright-checkpoint",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "Structured page snapshots for Playwright — screenshots, accessibility, web vitals, and auto-generated documentation from your e2e tests",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"playwright",
|
|
7
|
+
"testing",
|
|
8
|
+
"checkpoint",
|
|
9
|
+
"e2e",
|
|
10
|
+
"accessibility",
|
|
11
|
+
"web-vitals",
|
|
12
|
+
"documentation"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "pm990320",
|
|
16
|
+
"repository": "pm990320/playwright-checkpoint",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/pm990320/playwright-checkpoint/issues"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/pm990320/playwright-checkpoint",
|
|
21
|
+
"private": false,
|
|
22
|
+
"type": "module",
|
|
23
|
+
"packageManager": "bun@1.2.15",
|
|
24
|
+
"main": "./dist/index.cjs",
|
|
25
|
+
"module": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"bin": {
|
|
28
|
+
"playwright-checkpoint": "./dist/cli/bin.js"
|
|
29
|
+
},
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.js",
|
|
34
|
+
"require": "./dist/index.cjs"
|
|
35
|
+
},
|
|
36
|
+
"./core": {
|
|
37
|
+
"types": "./dist/core.d.ts",
|
|
38
|
+
"import": "./dist/core.js",
|
|
39
|
+
"require": "./dist/core.cjs"
|
|
40
|
+
},
|
|
41
|
+
"./cli": {
|
|
42
|
+
"types": "./dist/cli/index.d.ts",
|
|
43
|
+
"import": "./dist/cli/index.js",
|
|
44
|
+
"require": "./dist/cli/index.cjs"
|
|
45
|
+
},
|
|
46
|
+
"./teardown": {
|
|
47
|
+
"types": "./dist/teardown.d.ts",
|
|
48
|
+
"import": "./dist/teardown.js",
|
|
49
|
+
"require": "./dist/teardown.cjs"
|
|
50
|
+
},
|
|
51
|
+
"./components": {
|
|
52
|
+
"types": "./dist/components.d.ts",
|
|
53
|
+
"import": "./dist/components.js",
|
|
54
|
+
"require": "./dist/components.cjs"
|
|
55
|
+
},
|
|
56
|
+
"./mcp": {
|
|
57
|
+
"types": "./dist/mcp/index.d.ts",
|
|
58
|
+
"import": "./dist/mcp/index.js",
|
|
59
|
+
"require": "./dist/mcp/index.cjs"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"files": [
|
|
63
|
+
"dist",
|
|
64
|
+
"README.md",
|
|
65
|
+
"LICENSE"
|
|
66
|
+
],
|
|
67
|
+
"sideEffects": false,
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsup --config tsup.config.ts",
|
|
70
|
+
"check": "tsc --noEmit",
|
|
71
|
+
"lint": "eslint .",
|
|
72
|
+
"format": "prettier --write .",
|
|
73
|
+
"check-types": "tsc --noEmit",
|
|
74
|
+
"test": "vitest run",
|
|
75
|
+
"test:watch": "vitest",
|
|
76
|
+
"prepack": "bun run build",
|
|
77
|
+
"pack:check": "npm pack --dry-run"
|
|
78
|
+
},
|
|
79
|
+
"peerDependencies": {
|
|
80
|
+
"@playwright/test": "^1.59.1"
|
|
81
|
+
},
|
|
82
|
+
"peerDependenciesMeta": {
|
|
83
|
+
"@modelcontextprotocol/sdk": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"playwright-core": {
|
|
87
|
+
"optional": true
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"optionalDependencies": {
|
|
91
|
+
"@axe-core/playwright": "^4.10.2"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"@commitlint/cli": "^20.5.0",
|
|
95
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
96
|
+
"@eslint/js": "^10.0.1",
|
|
97
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
98
|
+
"@types/node": "^25.5.0",
|
|
99
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
100
|
+
"eslint": "^10.1.0",
|
|
101
|
+
"jiti": "^2.6.1",
|
|
102
|
+
"playwright-core": "^1.59.1",
|
|
103
|
+
"prettier": "^3.8.1",
|
|
104
|
+
"tsup": "^8.5.0",
|
|
105
|
+
"typescript": "^5.8.3",
|
|
106
|
+
"typescript-eslint": "^8.58.0",
|
|
107
|
+
"vitest": "^4.1.2"
|
|
108
|
+
}
|
|
109
|
+
}
|