-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 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
{
"name": "@apmantza/greedysearch-pi",
"version": "2.1.6",
"description": "Headless multi-engine AI search (Perplexity, Google AI, ChatGPT, Gemini) via browser automation. NO API KEYS needed. Grounded all-engine search fetches sources by default, with optional configurable synthesis and deep research.",
"type": "module",
"keywords": [
"pi-package"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apmantza/GreedySearch-pi.git"
},
"author": "Apostolos Mantzaris",
"image": "docs/banner.png",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node test.mjs",
"test:unit": "node test.mjs unit",
"test:quick": "node test.mjs quick",
"test:smoke": "node test.mjs smoke",
"test:bash": "./test.sh",
"test:bash:quick": "./test.sh quick",
"test:bash:smoke": "./test.sh smoke",
"mcp": "node bin/mcp.mjs",
"stealth-check": "node scripts/stealth-check.mjs",
"stealth:check": "node scripts/stealth-check.mjs",
"stealth:strict": "node scripts/stealth-check.mjs --strict",
"stealth:diff": "node scripts/stealth-check.mjs --diff",
"stealth:baseline": "node scripts/stealth-check.mjs --diff",
"lint": "node scripts/lint.mjs",
"check:lockfile": "node scripts/check-lockfile.mjs",
"changelog:check": "node scripts/changelog-release.mjs --check",
"changelog:release": "node scripts/changelog-release.mjs",
"changelog:extract": "node scripts/changelog-extract.mjs",
"release:backfill-notes": "node scripts/backfill-github-releases.mjs"
},
"engines": {
"node": ">=20.11.0"
},
"files": [
"index.ts",
"test.mjs",
"bin/",
"src/",
"extractors/",
"scripts/",
"CHANGELOG.md",
"README.md",
"docs/"
],
"pi": {
"extensions": [
"./index.ts"
]
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@sinclair/typebox": "^0.34.49",
"jsdom": "^30.0.1",
"pdf-parse": "^2.4.5",
"turndown": "^7.1.2"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "^0.79.0"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^26.2.0"
}
}