-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.19 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.19 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
{
"name": "@erdinccurebal/webcli",
"version": "0.1.0",
"description": "Headless browser CLI — navigate, scrape, and interact from the terminal",
"license": "MIT",
"author": "erdinccurebal",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/erdinccurebal/webcli.git"
},
"homepage": "https://webcli.erdinc.curebal.dev/",
"bugs": {
"url": "https://github.com/erdinccurebal/webcli/issues"
},
"keywords": [
"cli",
"browser",
"headless",
"playwright",
"web-scraping",
"automation",
"typescript",
"agent",
"ai"
],
"bin": {
"webcli": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^13.1.0",
"playwright": "^1.52.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"eslint": "^10.0.1",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}