-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "local-agent-gateway",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"description": "Local gateway that exposes desktop coding agents to chat platforms.",
"private": false,
"maintainers": [
{
"name": "codex"
}
],
"engines": {
"node": ">=22"
},
"keywords": [
"codex",
"local-agent",
"feishu",
"lark",
"gateway",
"remote-control"
],
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:web": "vite --host 127.0.0.1",
"build": "tsc -p tsconfig.json && vite build",
"start": "node dist/src/server/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@fastify/static": "^9.1.3",
"@larksuiteoapi/node-sdk": "^1.54.0",
"@vitejs/plugin-react": "^5.1.1",
"chokidar": "^4.0.3",
"cors": "^2.8.5",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"fastify": "^5.6.2",
"fastify-plugin": "^5.1.0",
"nanoid": "^5.1.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"vite": "^7.3.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/cors": "^2.8.19",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"overrides": {
"axios": "^1.16.0"
},
"homepage": "https://github.com/yanfulei/local-agent-gateway#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yanfulei/local-agent-gateway.git"
},
"bugs": {
"url": "https://github.com/yanfulei/local-agent-gateway/issues"
}
}