fastbrowser_cli 1.0.40 → 1.0.41
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 +16 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -200,6 +200,22 @@ npm run start:fastbrowser_mcp # run fastbrowser_mcp from source
|
|
|
200
200
|
npm run inspect:fastbrowser_mcp # open the MCP inspector against fastbrowser_mcp
|
|
201
201
|
```
|
|
202
202
|
|
|
203
|
+
## Contribs
|
|
204
|
+
|
|
205
|
+
two examples using fastbrowser_cli as a dependency to build higher-level tools on top of it. Run these commands from the root of the repo.
|
|
206
|
+
|
|
207
|
+
### linkedin_cli
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
npx -p fastbrowser_cli@latest linkedin_cli profile jeromeetienne
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
### twitter_cli
|
|
214
|
+
|
|
215
|
+
```
|
|
216
|
+
npx -p fastbrowser_cli@latest twitter_cli profile jerome_etienne
|
|
217
|
+
```
|
|
218
|
+
|
|
203
219
|
## How to publish to npmjs.com
|
|
204
220
|
|
|
205
221
|
`fastbrowser_cli` depends on the in-repo workspace package `a11y_parse`. Always publish through **pnpm** (not npm) — `pnpm publish` rewrites the `workspace:^` dep into a real version range in the tarball; `npm publish` cannot.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastbrowser_cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.41",
|
|
4
4
|
"description": "A CLI tool for FastBrowser, providing commands to interact with the FastBrowser MCP (Model Context Protocol) server and perform various browser automation tasks.",
|
|
5
5
|
"main": "dist/fastbrowser_cli/fastbrowser_cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"typescript": "^6.0.3",
|
|
33
33
|
"zod": "^4.3.6",
|
|
34
34
|
"zod-from-json-schema": "^0.5.2",
|
|
35
|
-
"a11y_parse": "^1.0.
|
|
35
|
+
"a11y_parse": "^1.0.9"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/express": "^4.17.21",
|