-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.03 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
{
"name": "agent-workbench",
"version": "0.0.0",
"private": true,
"description": "Local-first OpenCode-style agent TUI workbench for disciplined software development",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"tests",
"plugins/*"
],
"scripts": {
"phase": "echo Phase 1 workspace scaffold only",
"validate": "echo See PHASE_1_VALIDATION.md",
"build": "bash scripts/build-all.sh || echo 'build: bun not available (non-critical on npm-only runners)'",
"test": "echo 'Use bun test directly (cd tests && bun test)'",
"test:unit": "cd tests && bun test unit",
"test:integration": "cd tests && bun test integration",
"test:e2e": "cd tests && bun test e2e",
"test:repeat": "bash scripts/test-repeat.sh",
"test:health": "bash scripts/test-health.sh",
"coverage": "bun test --coverage",
"prepare": "husky || true",
"postinstall": "ln -sf ../../../packages/telemetry tests/node_modules/@agent-workbench/telemetry 2>/dev/null; ln -sf ../../../packages/plugin-sdk tests/node_modules/@agent-workbench/plugin-sdk 2>/dev/null; true"
},
"keywords": [
"agent-workbench",
"tui",
"opentui",
"ai-agent",
"developer-tools",
"typescript",
"terminal-ui"
],
"author": "MerverliPy",
"license": "MIT",
"engines": {
"bun": ">=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MerverliPy/agent-workbench.git"
},
"bugs": {
"url": "https://github.com/MerverliPy/agent-workbench/issues"
},
"homepage": "https://github.com/MerverliPy/agent-workbench#readme",
"overrides": {
"drizzle-orm": "^0.45.2"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"bun run typecheck --noEmit"
],
"*.{ts,tsx,js,jsx,json,md,yaml,yml}": [
"bash -c 'which biome &>/dev/null && bunx @biomejs/biome check --write --no-errors-on-unmatched || echo \"ok\"'"
]
},
"dependencies": {
"drizzle-orm": "^0.45.2"
}
}