Files
open-tasks/package.json
glm-5.1 307b8a2b54 Add architecture specification and bump taskgraph to v0.0.2
Architecture docs for the open-tasks plugin covering the registry pattern
dispatch design, operation set, error handling, data flow, and constraints.
Includes four ADRs (registry pattern, no-cache policy, risk operation merge,
frontmatter normalization). The depends_on/dependsOn compatibility issue in
@alkdev/taskgraph is resolved in v0.0.2, so the dependency is bumped and
the docs reflect the fix.

AGENTS.md updated: canonical dependsOn field, dependents operation added,
hooks clarification, field naming note.
2026-04-28 09:29:26 +00:00

53 lines
1.3 KiB
JSON

{
"name": "@alkdev/open-tasks",
"version": "0.1.0",
"description": "OpenCode plugin for structured task management with graph analysis, decomposition guidance, and workflow cost estimation.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
"lint": "bunx @biomejs/biome check .",
"format": "bunx @biomejs/biome format --write .",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"author": "Alkimia Development",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "git@git.alk.dev:alkdev/open-tasks.git"
},
"files": [
"dist",
"LICENSE-MIT",
"LICENSE-APACHE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"opencode",
"plugin",
"tasks",
"taskgraph",
"dependency-analysis",
"decomposition"
],
"dependencies": {
"@alkdev/taskgraph": "^0.0.2",
"@opencode-ai/plugin": "^1.1.3"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/node": "^20.14.0",
"typescript": "^5.7.3"
}
}