stepwright
Version:
A powerful web scraping library built with Playwright
76 lines • 1.98 kB
JSON
{
"name": "stepwright",
"version": "1.0.2",
"description": "A powerful web scraping library built with Playwright",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"keywords": [
"web-scraping",
"playwright",
"automation",
"browser-automation",
"data-extraction",
"web-crawler",
"puppeteer-alternative",
"selenium-alternative",
"declarative-scraping",
"web-automation",
"headless-browser",
"scraping-framework"
],
"author": "Muhammad Umer Farooq <umer@lablnet.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Framework-Island/stepwright"
},
"bugs": {
"url": "https://github.com/Framework-Island/stepwright/issues"
},
"homepage": "https://github.com/Framework-Island/stepwright/stepwright#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"playwright": "^1.54.1"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.57.1",
"globals": "16.3.0",
"jiti": "2.5.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "8.39.1",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"playwright": "^1.54.1"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
}
}