-
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.3 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.3 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": "web-documentation-agent",
"version": "1.0.0",
"description": "AI agent that explores web applications and generates user documentation",
"type": "module",
"packageManager": "pnpm@10.33.0",
"main": "dist/cli.js",
"scripts": {
"build": "tsc",
"start": "node --env-file=.env dist/cli.js",
"dev": "pnpm build && pnpm start",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"postinstall": "playwright install chromium"
},
"keywords": [
"ai-agent",
"documentation",
"playwright",
"deepagents",
"langchain"
],
"author": "",
"license": "ISC",
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3"]
},
"dependencies": {
"@langchain/anthropic": "^1.4.0",
"@langchain/core": "^1.1.48",
"@langchain/langgraph": "^1.3.2",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.1",
"@langchain/openai": "^1.4.7",
"deepagents": "^1.10.2",
"langchain": "^1.4.2",
"playwright": "^1.60.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0"
}
}