Files
parcer/maxun-core/package.json

40 lines
824 B
JSON
Raw Normal View History

2024-07-31 20:48:25 +05:30
{
"name": "maxun-core",
2026-02-15 02:25:02 +05:30
"version": "0.0.31",
2024-10-24 19:18:09 +05:30
"description": "Core package for Maxun, responsible for data extraction",
2024-07-31 20:48:25 +05:30
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"test": "jest",
"build": "npm run clean && tsc",
"lint": "eslint .",
"clean": "rimraf ./build"
},
"files": [
"build/*"
],
"keywords": [
2024-10-24 19:18:09 +05:30
"maxun",
"no-code scraping",
2024-07-31 20:48:25 +05:30
"web",
"automation",
"workflow",
2024-10-24 19:18:09 +05:30
"data extraction",
2024-11-23 07:09:13 +05:30
"scraping",
"web scraper",
"web scraping",
"data scraping",
"no-code web scraper",
"no-code web scraping"
2024-07-31 20:48:25 +05:30
],
2024-10-24 19:18:09 +05:30
"author": "Maxun",
"license": "AGPL-3.0-or-later",
2024-07-31 20:48:25 +05:30
"dependencies": {
2025-11-30 17:41:44 +05:30
"@types/node": "22.7.9",
2024-08-21 04:42:00 +05:30
"cross-fetch": "^4.0.0",
2024-07-31 20:48:25 +05:30
"joi": "^17.6.0",
2025-11-30 17:41:44 +05:30
"playwright-core": "1.57.0",
"turndown": "^7.2.2"
2024-07-31 20:48:25 +05:30
}
2026-01-23 14:43:22 +05:30
}