initial commit

This commit is contained in:
2026-05-14 08:12:13 -07:00
commit 17a1ee963a
8 changed files with 1231 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "local-page-archiver",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Render and save self-contained HTML archives for pages the operator is authorized to access.",
"bin": {
"archive-page": "./src/cli.mjs"
},
"scripts": {
"archive": "node src/cli.mjs archive",
"serve": "node src/server.mjs",
"install-browsers": "playwright install chromium"
},
"dependencies": {
"playwright": "^1.59.1"
},
"engines": {
"node": ">=22"
}
}