-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.08 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
70
71
72
73
74
75
{
"name": "openadt-workspace",
"private": true,
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*",
".agents/skills/e2e"
],
"scripts": {
"bootstrap:devcontainer": "bun tools/devcontainer-bootstrap/src/main.ts",
"package:release": "bun tools/package-release/src/main.ts",
"release:version": "bun tools/release-version/src/main.ts",
"mcp:build": "nx run adt-mcp:build",
"mcp:build:check": "nx run adt-mcp:build:check",
"mcp:build:compile": "bun scripts/build-openadt-mcp-release.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format:write": "nx format:write",
"openadt": "nx run openadt-cli:run --output-style=stream --",
"openadt:mcp": "bun scripts/nx-openadt.ts mcp",
"mcp:stdio": "bun scripts/mcp-stdio.ts",
"mcp:adt-lsp": "bun scripts/mcp-adt-lsp.ts",
"openadt:build": "nx package openadt-cli --output-style=stream",
"openadt:test": "nx test openadt-cli --output-style=stream",
"act:debt": "bun .agents/skills/act/scripts/review-debt-cli.ts",
"act:debt:query": "bun .agents/skills/act/scripts/review-debt-cli.ts query",
"act:debt:plan": "bun .agents/skills/act/scripts/review-debt-cli.ts plan",
"act:debt:done": "bun .agents/skills/act/scripts/review-debt-cli.ts done",
"act:debt:test": "bun .agents/skills/act/scripts/review-debt-cli.ts test",
"harvest": "bun .agents/skills/harvest/scripts/harvest-cli.ts",
"harvest:pr": "bun .agents/skills/harvest/scripts/harvest-cli.ts pr",
"harvest:batch": "bun .agents/skills/harvest/scripts/harvest-cli.ts batch",
"harvest:resolve": "bun .agents/skills/harvest/scripts/harvest-cli.ts resolve",
"harvest:archive": "bun .agents/skills/harvest/scripts/harvest-cli.ts archive",
"harvest:test": "bun .agents/skills/harvest/scripts/harvest-cli.ts test",
"test:mcp:stdio": "bun packages/adt-mcp/src/test/test-mcp-stdio.ts",
"inspect": "bunx @modelcontextprotocol/inspector bun run packages/adt-mcp/src/cli.ts serve --stdio",
"openadt-mcp-dev": "bunx @openadt/adt-mcp",
"e2e": "bun .agents/skills/e2e/cli.ts",
"prepare": "husky",
"precommit:format": "biome format --write --no-errors-on-unmatched . && git update-index --again",
"nx": "nx"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/inspector": "^0.22.0",
"@nx/workspace": "22.7.2",
"@octokit/rest": "^22.0.1",
"@openadt/mcp-framing": "workspace:*",
"@types/adm-zip": "^0.5.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.21",
"adm-zip": "^0.6.0",
"bun-types": "^1.3.14",
"e2e-ai-testing-skill": "workspace:*",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"js-yaml": "^4.3.1",
"nx": "^22.7.2",
"oxlint": "^1.69.0",
"playwright": "^1.60.0",
"prettier": "^3.7.4",
"publint": "^0.3.21",
"tar": "^7.5.15",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"unrun": "^0.3.1",
"uuid": "^11.1.0",
"vscode-jsonrpc": "^8.2.1"
}
}