-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 963 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 963 Bytes
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
{
"name": "browser-automation-service",
"version": "1.0.0",
"description": "Standalone browser automation service with extension interface",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"cli": "node src/cli.js"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.0",
"multer": "^1.4.5-lts.1",
"puppeteer": "^24.10.1",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
},
"keywords": [
"browser",
"automation",
"extension",
"api",
"websocket"
],
"author": "",
"license": "ISC"
}