-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "@bytesbrains/pi-textbrowser",
"version": "1.1.1",
"description": "Headless browser for Pi — browse the web with DOM + OCR text maps. No image tokens, 10-50x cheaper than screenshot-based browsing.",
"keywords": [
"pi-package",
"pi-extension",
"browser",
"automation",
"playwright",
"ocr",
"tesseract",
"web-scraping"
],
"author": "BytesBrains Pte Ltd (https://bytesbrains.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbrains/pi-textbrowser.git"
},
"homepage": "https://github.com/bytesbrains/pi-textbrowser#readme",
"bugs": {
"url": "https://github.com/bytesbrains/pi-textbrowser/issues"
},
"license": "MIT",
"main": "./src/index.ts",
"engines": {
"node": ">=18"
},
"files": [
"src/",
"README.md",
"AGENTS.md",
"LICENSE"
],
"dependencies": {
"playwright": "^1.50.0",
"tesseract.js": "^7.0.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"image": "https://raw.githubusercontent.com/nandal/pi-ext/main/textbrowser/screenshot.png"
}
}