-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "browser-ai-agent",
"version": "1.0.0",
"description": "AI-powered browser automation tool for performing various web tasks",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": ["browser-automation", "ai-agent", "puppeteer", "typescript"],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"puppeteer": "^21.5.2",
"openai": "^4.20.1",
"dotenv": "^16.3.1",
"commander": "^11.1.0",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"inquirer": "^9.2.12",
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@types/inquirer": "^9.0.7",
"typescript": "^5.2.2",
"ts-node": "^10.9.1",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"eslint": "^8.52.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"prettier": "^3.0.3"
}
}