@razohq/razo 0.1.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 +176 -0
- package/dist/chunk-UCLP2ILU.mjs +20 -0
- package/dist/chunk-UCLP2ILU.mjs.map +1 -0
- package/dist/events-D_lCLx1V.d.mts +44 -0
- package/dist/events-D_lCLx1V.d.ts +44 -0
- package/dist/index.d.mts +336 -0
- package/dist/index.d.ts +336 -0
- package/dist/index.js +961 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +892 -0
- package/dist/index.mjs.map +1 -0
- package/dist/reporter.d.mts +31 -0
- package/dist/reporter.d.ts +31 -0
- package/dist/reporter.js +91 -0
- package/dist/reporter.js.map +1 -0
- package/dist/reporter.mjs +50 -0
- package/dist/reporter.mjs.map +1 -0
- package/dist/vite.d.mts +29 -0
- package/dist/vite.d.ts +29 -0
- package/dist/vite.js +55 -0
- package/dist/vite.js.map +1 -0
- package/dist/vite.mjs +26 -0
- package/dist/vite.mjs.map +1 -0
- package/package.json +110 -0
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@razohq/razo",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Playwright UI controls with human names that narrate every action twice: a readable test.step() sentence and a structured StepEvent JSON artifact built for AI failure analysis.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "commonjs",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.mjs",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": {
|
|
13
|
+
"types": "./dist/index.d.mts",
|
|
14
|
+
"default": "./dist/index.mjs"
|
|
15
|
+
},
|
|
16
|
+
"require": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"./reporter": {
|
|
22
|
+
"import": {
|
|
23
|
+
"types": "./dist/reporter.d.mts",
|
|
24
|
+
"default": "./dist/reporter.mjs"
|
|
25
|
+
},
|
|
26
|
+
"require": {
|
|
27
|
+
"types": "./dist/reporter.d.ts",
|
|
28
|
+
"default": "./dist/reporter.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"./vite": {
|
|
32
|
+
"import": {
|
|
33
|
+
"types": "./dist/vite.d.mts",
|
|
34
|
+
"default": "./dist/vite.mjs"
|
|
35
|
+
},
|
|
36
|
+
"require": {
|
|
37
|
+
"types": "./dist/vite.d.ts",
|
|
38
|
+
"default": "./dist/vite.js"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"./package.json": "./package.json"
|
|
42
|
+
},
|
|
43
|
+
"typesVersions": {
|
|
44
|
+
"*": {
|
|
45
|
+
"reporter": [
|
|
46
|
+
"./dist/reporter.d.ts"
|
|
47
|
+
],
|
|
48
|
+
"vite": [
|
|
49
|
+
"./dist/vite.d.ts"
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"dist",
|
|
55
|
+
"LICENSE",
|
|
56
|
+
"README.md"
|
|
57
|
+
],
|
|
58
|
+
"sideEffects": false,
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=20"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"playwright",
|
|
64
|
+
"testing",
|
|
65
|
+
"e2e",
|
|
66
|
+
"test-automation",
|
|
67
|
+
"page-object",
|
|
68
|
+
"reporter",
|
|
69
|
+
"ai",
|
|
70
|
+
"test-reporting",
|
|
71
|
+
"vite-plugin",
|
|
72
|
+
"testid"
|
|
73
|
+
],
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsup",
|
|
76
|
+
"typecheck": "tsc --noEmit",
|
|
77
|
+
"test": "playwright test",
|
|
78
|
+
"build:demo": "vite build demo-app",
|
|
79
|
+
"check:package": "publint && attw --pack ."
|
|
80
|
+
},
|
|
81
|
+
"peerDependencies": {
|
|
82
|
+
"@playwright/test": ">=1.40.0",
|
|
83
|
+
"vite": ">=5.0.0"
|
|
84
|
+
},
|
|
85
|
+
"peerDependenciesMeta": {
|
|
86
|
+
"vite": {
|
|
87
|
+
"optional": true
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@arethetypeswrong/cli": "^0.18.5",
|
|
92
|
+
"@playwright/test": "^1.61.1",
|
|
93
|
+
"@types/node": "^26.1.1",
|
|
94
|
+
"publint": "^0.3.21",
|
|
95
|
+
"tsup": "^8.5.1",
|
|
96
|
+
"typescript": "^5.9.3",
|
|
97
|
+
"vite": "^8.1.4"
|
|
98
|
+
},
|
|
99
|
+
"author": "Mitchell Lombardo <razohq@gmail.com>",
|
|
100
|
+
"repository": {
|
|
101
|
+
"type": "git",
|
|
102
|
+
"url": "git+https://github.com/razohq/razo.git",
|
|
103
|
+
"directory": "packages/razo"
|
|
104
|
+
},
|
|
105
|
+
"bugs": "https://github.com/razohq/razo/issues",
|
|
106
|
+
"homepage": "https://github.com/razohq/razo/tree/main/packages/razo#readme",
|
|
107
|
+
"publishConfig": {
|
|
108
|
+
"access": "public"
|
|
109
|
+
}
|
|
110
|
+
}
|