31 lines
791 B
JSON
31 lines
791 B
JSON
{
|
|
"name": "@omnivore/puppeteer-parse",
|
|
"version": "1.0.0",
|
|
"description": "Accepts URL of the article and parses its content",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"files": [
|
|
"build/src"
|
|
],
|
|
"dependencies": {
|
|
"@omnivore/content-handler": "1.0.0",
|
|
"puppeteer-core": "^22.12.1",
|
|
"puppeteer-extra": "^3.3.6",
|
|
"puppeteer-extra-plugin-adblocker": "^2.13.6",
|
|
"puppeteer-extra-plugin-stealth": "^2.11.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.6",
|
|
"mocha": "^10.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
|
|
"test:typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --ext ts,js,tsx,jsx",
|
|
"build": "tsc"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
}
|
|
}
|