-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.16 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "browser-copilot-integration",
"version": "1.0.0",
"description": "Connect GitHub Copilot to your browser for automated testing and web automation",
"main": "index.js",
"scripts": {
"start": "node vscode-extension/relay-server/index.js",
"start:prod": "NODE_ENV=production node vscode-extension/relay-server/index.js",
"start:pm2": "pm2 start vscode-extension/relay-server/index.js --name browser-copilot-relay",
"stop:pm2": "pm2 stop browser-copilot-relay",
"restart:pm2": "pm2 restart browser-copilot-relay",
"dev": "NODE_ENV=development nodemon vscode-extension/relay-server/index.js",
"test": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:watch": "jest --watch",
"lint": "eslint *.js relay-server/*.js vscode-extension/*.js browser-extension/*.js",
"lint:fix": "eslint --fix *.js relay-server/*.js vscode-extension/*.js browser-extension/*.js",
"format": "prettier --write \"**/*.{js,json,md}\"",
"demo": "node automated-demo.js",
"demo:smart": "node smart-agent.js",
"demo:autonomous": "node autonomous-agent.js",
"demo:basic": "node examples/demo-basic.js",
"demo:self-healing": "node examples/demo-self-healing.js",
"clean": "rm -rf agent-data/*.json screenshots/*.png logs/*.log",
"setup": "npm install && cd relay-server && npm install && cd ../vscode-extension && npm install && cd ..",
"package:vscode": "cd vscode-extension && npx -y @vscode/vsce package --out ../dist",
"package:chrome": "node -e \"const fs=require('fs'); if(!fs.existsSync('dist')) fs.mkdirSync('dist');\" && powershell -Command \"Compress-Archive -Path 'browser-extension\\*' -DestinationPath 'dist\\Copilot Browser.zip' -Force\"",
"package:all": "node scripts/package-all.js",
"precommit": "npm run lint && npm test",
"build": "npm run clean && npm run lint",
"healthcheck": "curl -f http://localhost:8080/health || exit 1",
"logs": "tail -f logs/app.log",
"docker:build": "docker build -t browser-copilot-relay .",
"docker:run": "docker run -p 8080:8080 --env-file .env browser-copilot-relay"
},
"keywords": [
"github-copilot",
"browser-automation",
"vscode-extension",
"chrome-extension",
"websocket",
"testing",
"autonomous-agent",
"self-healing"
],
"author": "Jayprakash Pal",
"license": "MIT",
"dependencies": {
"appium": "^2.19.0",
"appium-flutter-driver": "^2.19.0",
"dotenv": "^16.4.5",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"puppeteer-core": "^24.37.2",
"uuid": "^9.0.1",
"webdriverio": "^9.24.0",
"ws": "^8.19.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"pm2": "^5.3.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/YOUR-USERNAME/browser-copilot-integration.git"
},
"bugs": {
"url": "https://github.com/YOUR-USERNAME/browser-copilot-integration/issues"
},
"homepage": "https://github.com/YOUR-USERNAME/browser-copilot-integration#readme"
}