{
  "name": "@dv.nghiem/flowdeck",
  "version": "0.6.0",
  "description": "FlowDeck — structured planning and execution workflows for OpenCode",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "flowdeck": "./bin/flowdeck.js"
  },
  "files": [
    "dist",
    "bin",
    "src/commands",
    "src/rules",
    "src/skills",
    "docs",
    "postinstall.mjs"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build": "bun build src/index.ts --outdir dist --target node --format esm --external @opencode-ai/plugin --external @opencode-ai/sdk && tsc --emitDeclarationOnly --project tsconfig.build.json",
    "build:fdx": "cargo install --path crates/fdx --quiet",
    "check:fdx": "fdx --version",
    "postinstall": "node postinstall.mjs",
    "prepublishOnly": "bun run clean && bun run build",
    "test": "bun test",
    "typecheck": "tsc --noEmit",
    "validate:skills": "node scripts/validate-skills.mjs",
    "validate:docs": "node scripts/validate-docs.mjs"
  },
  "keywords": ["opencode", "plugin", "ai", "workflow", "planning"],
  "author": "DVNghiem",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DVNghiem/FlowDeck.git"
  },
  "bugs": {
    "url": "https://github.com/DVNghiem/FlowDeck/issues"
  },
  "homepage": "https://github.com/DVNghiem/FlowDeck#readme",
  "dependencies": {
    "@opencode-ai/plugin": "^1.17.3"
  },
  "devDependencies": {
    "@types/node": "^25.9.3",
    "bun-types": "^1.3.14",
    "ejs": "^6.0.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.8"
  },
  "peerDependencies": {
    "@opencode-ai/sdk": "^1.17.3"
  }
}
