{
  "name": "@super-repo/rune",
  "version": "0.4.0",
  "description": "Rune — runtime script orchestrator. Move package.json scripts into a shareable, sectioned config file.",
  "type": "module",
  "bin": {
    "rune": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./cli": "./dist/cli.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "scripts",
    "monorepo",
    "task-runner",
    "package-json",
    "super"
  ],
  "license": "MIT",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.39.0",
    "tsx": "^4.21.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "scripts": {
    "build": "tsc -p config/tsconfig.build.json",
    "test": "vitest run"
  }
}