-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 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
{
"name": "agent-pilot",
"version": "1.0.0",
"description": "AgentPilot - ChatGPT Web via Chrome CDP,无需 API Key",
"type": "module",
"main": "src/agent.js",
"scripts": {
"start": "node src/agent.js",
"debug": "node scripts/debug-runner.mjs",
"api": "node src/api-server.js",
"api:stop": "powershell -ExecutionPolicy Bypass -File scripts/kill-port-3000.ps1",
"test-api": "curl -s http://127.0.0.1:3000/v1/models",
"ngrok": "powershell -ExecutionPolicy Bypass -File scripts/ngrok.ps1",
"run": "powershell -ExecutionPolicy Bypass -File scripts/run.ps1",
"chrome": "powershell -ExecutionPolicy Bypass -File scripts/launch-chrome.ps1",
"check": "powershell -ExecutionPolicy Bypass -File scripts/check-cdp.ps1",
"auth": "node src/chatgpt-web-client.js auth",
"chat": "node src/chatgpt-web-client.js chat",
"mcp": "node src/mcp-server.js",
"agent": "powershell -ExecutionPolicy Bypass -File scripts/run-agent.ps1",
"agent:raw": "python agent/agent_loop.py"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"express": "^4.21.2",
"puppeteer-core": "^23.0.0",
"zod": "^4.3.6"
},
"keywords": [
"chatgpt",
"cdp",
"chrome-debug",
"zero-token"
],
"author": "",
"license": "MIT"
}