-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "webcopilot",
"version": "0.1.5",
"description": "A multimodal LLM-based AI web automation agent powered by Puppeteer",
"main": "dist/index.js",
"bin": {
"webcopilot": "dist/index.js"
},
"files": [
"dist",
"config/default.yml",
"prompts/tag_and_determine_action.md",
"prompts/locate_and_determine_action.md",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x ./dist/index.js",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/marked-terminal": "^6.1.1",
"@types/puppeteer": "^7.0.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@types/config": "^3.3.5",
"commander": "^13.0.0",
"config": "^3.3.12",
"js-yaml": "^4.1.0",
"marked": "^14.1.4",
"marked-terminal": "^7.2.1",
"puppeteer": "^24.3.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sharp": "^0.33.5"
}
}