Files
sigilbox/package.json

25 lines
655 B
JSON
Raw Normal View History

2026-05-14 08:12:13 -07:00
{
"name": "local-page-archiver",
"version": "0.1.0",
"private": true,
"type": "module",
2026-05-15 01:00:27 -07:00
"description": "Render and save self-contained HTML archives.",
2026-05-14 08:12:13 -07:00
"bin": {
2026-05-16 16:05:32 -07:00
"archive-page": "./src/cli.mjs",
"archive-page-container": "./src/container-runner.mjs"
2026-05-14 08:12:13 -07:00
},
"scripts": {
"archive": "node src/cli.mjs archive",
2026-05-16 16:05:32 -07:00
"container:archive": "node src/container-runner.mjs archive",
"container:build": "node src/container-runner.mjs build",
2026-05-15 09:25:19 -07:00
"test": "node --test test/*.test.mjs",
2026-05-14 08:12:13 -07:00
"install-browsers": "playwright install chromium"
},
"dependencies": {
"playwright": "^1.59.1"
},
"engines": {
"node": ">=22"
}
}