1
0
Fork 0
mirror of synced 2024-06-02 18:44:59 +12:00
ArchiveBox/package.json

25 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"
}
}