@pablovitasso/szkrabok 1.0.21 → 1.0.22

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.
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ import { fileURLToPath } from 'url';
3
+ import { dirname, join } from 'path';
4
+
5
+ const __dirname = dirname(fileURLToPath(import.meta.url));
6
+ await import(join(__dirname, '..', 'src', 'index.js'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pablovitasso/szkrabok",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Production-grade MCP browser automation layer with persistent sessions and stealth capabilities",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -12,13 +12,14 @@
12
12
  "#runtime": "./packages/runtime/index.js"
13
13
  },
14
14
  "files": [
15
+ "bin",
15
16
  "src",
16
17
  "packages/runtime",
17
18
  "scripts",
18
19
  "README.md"
19
20
  ],
20
21
  "bin": {
21
- "szkrabok": "src/index.js"
22
+ "szkrabok": "bin/szkrabok.js"
22
23
  },
23
24
  "engines": {
24
25
  "node": ">=20.0.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@szkrabok/runtime",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "szkrabok — browser bootstrap, stealth, session pool, MCP client.",
5
5
  "type": "module",
6
6
  "main": "index.js",