{
  "name": "@lingjingai/scriptctl",
  "version": "0.35.0",
  "description": "剧本阶段统一 CLI：直转外部素材到 script.json，以及当前最终剧本的读取、校验、原子编辑与批量 patch 精修。",
  "type": "module",
  "bin": {
    "scriptctl": "./dist/bin.js"
  },
  "main": "./dist/cli.js",
  "types": "./dist/cli.d.ts",
  "files": [
    "dist",
    "changes",
    "skills",
    "scripts/install-skill.mjs",
    "README.md"
  ],
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.32.1",
    "commander": "^12.1.0",
    "fast-json-patch": "^3.1.1",
    "fast-xml-parser": "^5.9.0",
    "jszip": "^3.10.1",
    "pdfjs-dist": "^4.10.38"
  },
  "devDependencies": {
    "@types/node": "^20.14.0",
    "c8": "^11.0.0",
    "typescript": "^5.5.0",
    "vitest": "^2.0.0"
  },
  "keywords": [
    "scriptctl",
    "screenplay",
    "cli",
    "agent-sandbox"
  ],
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "postinstall": "node scripts/install-skill.mjs",
    "install-skill": "node scripts/install-skill.mjs",
    "pretest": "pnpm run build",
    "test": "vitest run",
    "pretest:coverage": "pnpm run build",
    "test:coverage": "c8 --reporter=text --reporter=html --reporter=lcov --report-dir=coverage vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "surface:snapshot": "node scripts/scriptctl-surface-snapshot.mjs"
  }
}