{ "name": "dsh-goal-pause-guard", "version": "0.1.0", "description": "DSH plugin: asks for confirmation in a modal before pausing a running goal. Confirming pauses the goal, which also aborts the in-flight round so running subtasks stop immediately; cancelling does nothing.", "license": "MIT", "private": false, "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./client": { "types": "./lib/client.d.ts", "default": "./lib/client.js" }, "./package.json": "./package.json" }, "files": [ "dist", "lib", "cordis.patch.yml", "README.md", "LICENSE" ], "engines": { "node": ">=24" }, "dsh": { "bundle": { "patch": "./cordis.patch.yml" }, "client": { "platform": "web" } }, "keywords": [ "dsh-plugin", "dsh", "cordis", "cordis-plugin", "deepseek-harness", "goal", "confirmation" ], "scripts": { "build": "tsc -p tsconfig.build.json && node scripts/build-client.mjs", "typecheck": "tsc -p tsconfig.json --noEmit", "test": "node --test --test-reporter=spec 'test/**/*.test.ts'", "prepublishOnly": "pnpm run typecheck && pnpm run build && pnpm run test" }, "devDependencies": { "@types/jsdom": "^30.0.0", "@types/node": "24.13.3", "esbuild": "0.24.2", "jsdom": "29.1.1", "typescript": "5.9.3" } }