cbrowser 5.1.0 → 5.3.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/README.md +323 -256
- package/dist/browser.d.ts.map +1 -1
- package/dist/browser.js +22 -0
- package/dist/browser.js.map +1 -1
- package/dist/cli.js +209 -13
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/personas.d.ts +31 -1
- package/dist/personas.d.ts.map +1 -1
- package/dist/personas.js +349 -2
- package/dist/personas.js.map +1 -1
- package/docs/INSTALL.md +1 -1
- package/examples/basic-usage.ts +3 -1
- package/examples/smart-automation.ts +184 -0
- package/package.json +13 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cbrowser",
|
|
3
|
-
"version": "5.
|
|
4
|
-
"description": "AI-powered browser automation with
|
|
3
|
+
"version": "5.3.0",
|
|
4
|
+
"description": "AI-powered browser automation with self-healing selectors, natural language assertions, test generation, MCP server, constitutional safety, and autonomous journeys",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
@@ -32,18 +32,24 @@
|
|
|
32
32
|
"core-web-vitals",
|
|
33
33
|
"har-export",
|
|
34
34
|
"network-mocking",
|
|
35
|
-
"video-recording"
|
|
35
|
+
"video-recording",
|
|
36
|
+
"self-healing-selectors",
|
|
37
|
+
"smart-retry",
|
|
38
|
+
"natural-language-assertions",
|
|
39
|
+
"test-generation",
|
|
40
|
+
"mcp-server",
|
|
41
|
+
"claude-integration"
|
|
36
42
|
],
|
|
37
|
-
"author": "
|
|
43
|
+
"author": "Wyld Digital",
|
|
38
44
|
"license": "MIT",
|
|
39
45
|
"repository": {
|
|
40
46
|
"type": "git",
|
|
41
|
-
"url": "git+https://github.com/
|
|
47
|
+
"url": "git+https://github.com/alexandriashai/cbrowser.git"
|
|
42
48
|
},
|
|
43
49
|
"bugs": {
|
|
44
|
-
"url": "https://github.com/
|
|
50
|
+
"url": "https://github.com/alexandriashai/cbrowser/issues"
|
|
45
51
|
},
|
|
46
|
-
"homepage": "https://github.com/
|
|
52
|
+
"homepage": "https://github.com/alexandriashai/cbrowser#readme",
|
|
47
53
|
"engines": {
|
|
48
54
|
"node": ">=18.0.0"
|
|
49
55
|
},
|