-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 2.13 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
{
"name": "loopwithai",
"version": "0.1.0",
"description": "A multi-agent workbench for DeepSeek Harness with Pi, OpenAI Codex, Claude Code, and the native DeepSeek Agent Loop.",
"private": true,
"homepage": "https://github.com/loopwithai/LoopWithAI#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/loopwithai/LoopWithAI.git"
},
"keywords": [
"deepseek-harness",
"deepseek",
"multi-agent",
"coding-agent",
"pi-coding-agent",
"openai-codex",
"claude-code",
"cordis",
"typescript"
],
"workspaces": [
"apps/*",
"packages/*",
"vendor/cordis/*",
"vendor/dsh/*"
],
"scripts": {
"dev": "npm run dev --workspace @loopwithai/harness-web",
"start": "npm run start --workspace @loopwithai/harness-web",
"dev:loop": "npm run dev --workspace @loopwithai/web",
"build": "npm run build --workspace @loopwithai/harness-web",
"build:loop": "npm run build --workspace @loopwithai/web",
"build:vendor": "tsx scripts/check-vendor.ts",
"test": "npm run test --workspace @loopwithai/harness-web && npm run test --workspace @loopwithai/core && npm run test --workspace @loopwithai/web && npm run test --workspace @loopwithai/dsh-network-proxy && npm run test --workspace @loopwithai/dsh-agent-loop-selector && npm run test --workspace @loopwithai/dsh-agent-loop-pi && npm run test --workspace @loopwithai/dsh-agent-loop-codex",
"typecheck": "npm run typecheck --workspace @loopwithai/harness-web && npm run typecheck --workspace @loopwithai/core && npm run typecheck --workspace @loopwithai/web && npm run typecheck --workspace @loopwithai/dsh-network-proxy && npm run typecheck --workspace @loopwithai/dsh-agent-loop-selector && npm run typecheck --workspace @loopwithai/dsh-agent-loop-pi && npm run typecheck --workspace @loopwithai/dsh-agent-loop-codex && npm run typecheck --workspace @loopwithai/dsh-agent-loop-claude",
"check": "npm run build:vendor && npm run test && npm run typecheck && npm run build"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^7.0.0"
},
"engines": {
"node": ">=24.0.0"
}
}