-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "auto-chat-cli",
"version": "0.1.24",
"description": "Local GPT/Gemini browser automation CLI for queued image and text jobs.",
"license": "MIT",
"type": "module",
"files": [
"apps/server/dist",
"apps/server/public",
"apps/extension/dist",
"auto-chat-extension.zip",
"packages/shared/dist",
"packages/shared/package.json",
"skills/auto-chat",
"docs/agent-integration.md",
"examples",
"README.md",
"LICENSE",
"SECURITY.md"
],
"bin": {
"auto-chat": "apps/server/dist/cli.js"
},
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"@fastify/cors": "^11.0.1",
"auto-chat-shared": "file:packages/shared",
"fastify": "^5.8.5",
"open": "^10.1.0",
"sql.js": "^1.12.0",
"zod": "^3.25.0"
},
"scripts": {
"build": "npm run build -w auto-chat-shared && npm run build -w auto-chat-extension && npm run build -w auto-chat-server",
"check": "npm run build -w auto-chat-shared && npm run check --workspaces --if-present",
"test": "npm run build -w auto-chat-shared && npm run test --workspaces --if-present",
"pack:extension": "npm run build && rm -f auto-chat-extension.zip && cd apps/extension/dist && zip -r ../../../auto-chat-extension.zip .",
"prepublishOnly": "npm run build && npm run check && npm test",
"dev:server": "npm run dev -w auto-chat-server",
"auto-chat": "node apps/server/dist/cli.js",
"job:add": "npm run cli -w auto-chat-server -- job:add",
"job:list": "npm run cli -w auto-chat-server -- job:list",
"job:show": "npm run cli -w auto-chat-server -- job:show",
"job:watch": "npm run cli -w auto-chat-server -- job:watch",
"job:listen": "npm run cli -w auto-chat-server -- job:listen",
"job:dispatch": "npm run cli -w auto-chat-server -- job:dispatch",
"job:doctor": "npm run cli -w auto-chat-server -- job:doctor",
"job:retry": "npm run cli -w auto-chat-server -- job:retry",
"job:open": "npm run cli -w auto-chat-server -- job:open"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.9.0"
}
}