pagerunner 0.2.0 → 0.7.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/install.js +4 -4
- package/package.json +2 -2
package/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const { get } = require("https");
|
|
|
7
7
|
const { join } = require("path");
|
|
8
8
|
const { pipeline } = require("stream/promises");
|
|
9
9
|
|
|
10
|
-
const VERSION = "0.
|
|
10
|
+
const VERSION = "0.7.0";
|
|
11
11
|
const REPO = "Enreign/pagerunner";
|
|
12
12
|
|
|
13
13
|
const PLATFORMS = {
|
|
@@ -56,7 +56,7 @@ async function main() {
|
|
|
56
56
|
const binPath = join(binDir, "pagerunner");
|
|
57
57
|
|
|
58
58
|
if (existsSync(binPath)) {
|
|
59
|
-
console.log("
|
|
59
|
+
console.log("Pagerunner binary already installed.");
|
|
60
60
|
return;
|
|
61
61
|
}
|
|
62
62
|
|
|
@@ -87,10 +87,10 @@ async function main() {
|
|
|
87
87
|
|
|
88
88
|
renameSync(tmpPath, binPath);
|
|
89
89
|
chmodSync(binPath, 0o755);
|
|
90
|
-
console.log(`
|
|
90
|
+
console.log(`Pagerunner v${VERSION} installed successfully.`);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
main().catch((err) => {
|
|
94
|
-
console.error(`Failed to install
|
|
94
|
+
console.error(`Failed to install Pagerunner: ${err.message}`);
|
|
95
95
|
process.exit(1);
|
|
96
96
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagerunner",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "Persistent browser layer for AI agents. Connects any MCP client to your real Chrome profiles \u2014 already logged in, with site intelligence that compounds over time. Sessions survive daemon restarts. PII anonymization, encrypted state, auto-checkpoints, macOS menu bar.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|