-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "langchain-middleware-puppeteer",
"module": "./dist/index.mjs",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "LangChain middleware that provides Puppeteer browser automation tools for AI agents",
"license": "MIT",
"keywords": [
"langchain",
"puppeteer",
"middleware",
"browser-automation",
"ai-agents",
"web-scraping"
],
"author": "Eyuel G. Molla",
"repository": {
"type": "git",
"url": "https://github.com/eyueldk/langchain-middleware-puppeteer"
},
"bugs": {
"url": "https://github.com/eyueldk/langchain-middleware-puppeteer/issues"
},
"homepage": "https://github.com/eyueldk/langchain-middleware-puppeteer#readme",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"start": "bun playground/index.ts",
"build": "tsdown",
"prepublishOnly": "bun run build",
"check": "tsc --noEmit",
"format": "prettier --write ."
},
"devDependencies": {
"@langchain/google-genai": "^2.0.0",
"@types/bun": "latest",
"prettier": "^3.7.3",
"tsdown": "^0.17.0-beta.4"
},
"peerDependencies": {
"langchain": "*",
"puppeteer": "*",
"typescript": "^5"
},
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
}