-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "thoth-agents",
"version": "0.3.8",
"description": "Adaptive multi-harness orchestration with seven roles, runtime-autonomous Spec Kit-compatible SDD routes, and external provider boundaries.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"thoth-agents": "./dist/cli/index.js"
},
"type": "module",
"license": "MIT",
"packageManager": "pnpm@11.2.2",
"engines": {
"node": ">=22.13"
},
"keywords": [
"opencode",
"opencode-plugin",
"ai",
"agents",
"orchestration",
"llm",
"claude",
"gpt",
"sdd"
],
"repository": {
"type": "git",
"url": "https://github.com/EremesNG/thoth-agents"
},
"bugs": {
"url": "https://github.com/EremesNG/thoth-agents/issues"
},
"homepage": "https://github.com/EremesNG/thoth-agents#readme",
"files": [
"dist",
"skills",
"plugin",
".agents/plugins/marketplace.json",
".claude-plugin/marketplace.json",
"thoth-agents.schema.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "pnpm run integration:sync && tsup && tsc --emitDeclarationOnly && pnpm run generate-schema",
"generate-schema": "tsx scripts/generate-schema.ts",
"integration:sync": "tsx src/harness/generate-integration-packages.ts",
"integration:verify": "vitest run src/harness/generate-integration-packages.test.ts src/harness/integration-lifecycle.test.ts",
"release:notes": "tsx scripts/generate-release-notes.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check --write .",
"check:ci": "biome check .",
"dev": "pnpm run build && opencode",
"prepublishOnly": "pnpm run build && pnpm run integration:verify",
"version": "pnpm run integration:sync && pnpm run integration:verify && git add -- plugin .agents/plugins/marketplace.json .claude-plugin/marketplace.json",
"release:patch": "npm version patch --ignore-scripts=false && git push --follow-tags",
"release:minor": "npm version minor --ignore-scripts=false && git push --follow-tags",
"release:major": "npm version major --ignore-scripts=false && git push --follow-tags"
},
"dependencies": {
"@ast-grep/cli": "^0.40.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@opencode-ai/plugin": "1.18.2",
"@opencode-ai/sdk": "1.18.2",
"ink": "^7.0.3",
"react": "^19.2.6",
"unique-names-generator": "^4.7.1",
"vscode-jsonrpc": "^8.2.0",
"vscode-languageserver-protocol": "^3.17.5",
"which": "^6.0.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@types/node": "^22.19.19",
"@types/react": "^19.2.15",
"@types/which": "^3.0.4",
"ink-testing-library": "^4.0.0",
"tsup": "^8.5.1",
"tsx": "4.22.2",
"typescript": "^5.9.3",
"vitest": "4.1.6"
},
"overrides": {
"hono": "4.12.19",
"postcss": "8.5.14",
"tsx": "4.22.2"
}
}