-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "stepwright",
"version": "1.0.10",
"description": "A powerful web scraping library built with Playwright",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"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",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"publish": "npm publish",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"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.56.1"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@types/node": "^20.19.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.1",
"globals": "16.3.0",
"jiti": "2.5.1",
"prettier": "^3.6.2",
"rimraf": "^5.0.10",
"typescript": "^5.9.3",
"typescript-eslint": "8.39.1",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"playwright": "^1.54.1"
}
}