-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "@harvenstar/agentclick",
"version": "0.2.3",
"description": "Human-in-the-loop approval UI for AI agents. Review, edit, and approve agent actions in your browser before they execute.",
"keywords": [
"ai-agent",
"human-in-the-loop",
"approval",
"hitl",
"llm",
"langchain",
"openai",
"agent-ui",
"agentic",
"ai-safety",
"human-oversight"
],
"repository": {
"type": "git",
"url": "https://github.com/agentlayer-io/AgentClick.git"
},
"license": "MIT",
"homepage": "https://github.com/agentlayer-io/AgentClick",
"bin": {
"agentclick": "./bin/agentclick.mjs"
},
"files": [
"bin/",
"packages/server/dist/",
"packages/server/src/",
"packages/server/package.json",
"packages/web/dist/",
"packages/web/package.json",
"README.md"
],
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev -w packages/server\" \"npm run dev -w packages/web\"",
"build": "npm run build -w packages/server && npm run build -w packages/web",
"start": "npm run start -w packages/server"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"express": "^4.19.2",
"open": "^10.1.0",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"concurrently": "^9.0.0",
"playwright": "^1.58.2"
}
}