mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
24 lines
1,012 B
JSON
24 lines
1,012 B
JSON
{
|
|
"name": "archivebox",
|
|
"version": "0.6.0",
|
|
"description": "ArchiveBox: The self-hosted internet archive",
|
|
"author": "Nick Sweeting <archivebox-npm@sweeting.me>",
|
|
"repository": "github:ArchiveBox/ArchiveBox",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"archivebox": "python3 -m archivebox",
|
|
"selfupdate": "python3 -m pip install --upgrade archivebox && npm install --no-audit --no-fund --loglevel=error",
|
|
"postinstall": "archivebox version --quiet || (python3 -m pip install archivebox && archivebox --version)"
|
|
},
|
|
"bin": {
|
|
"archivebox": "python3 -m archivebox",
|
|
"single-file": "./node_modules/.bin/single-file",
|
|
"readability-extractor": "./node_modules/.bin/readability-extractor",
|
|
"mercury-parser": "./node_modules/.bin/mercury-parser"
|
|
},
|
|
"dependencies": {
|
|
"@postlight/mercury-parser": "^2.2.0",
|
|
"readability-extractor": "git+https://github.com/ArchiveBox/readability-extractor.git",
|
|
"single-file": "git+https://github.com/gildas-lormeau/SingleFile.git"
|
|
}
|
|
}
|