-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 775 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "agentgate-workspace",
"private": true,
"workspaces": [
"packages/*",
"web"
],
"scripts": {
"build": "bun run --workspaces --if-present build",
"typecheck": "bun run --workspaces --if-present typecheck",
"build:web": "bun run --filter @agentgate/web build",
"build:adapters": "bun run --filter @agentgate/openclaw-adapter build && bun run --filter @agentgate/feishu-adapter build && bun run --filter @agentgate/resource-adapter build",
"pack:openclaw-adapter": "npm pack ./packages/openclaw-adapter",
"pack:feishu-adapter": "npm pack ./packages/feishu-adapter"
},
"dependencies": {
"@huggingface/transformers": "^3.5.0"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.11"
}