{ "name": "vscode-cowriting-plugin", "displayName": "Cowriting (Cline SDK POC)", "description": "Non-shippable POC: a standalone VS Code extension that drives @cline/sdk.", "version": "0.0.1", "private": true, "license": "Apache-2.0", "publisher": "benstull", "engines": { "vscode": "^1.90.0", "node": ">=22" }, "categories": ["Other"], "main": "./out/extension.cjs", "activationEvents": ["onStartupFinished"], "contributes": { "commands": [ { "command": "cowriting.showClineSdkInfo", "title": "Cowriting: Show Cline SDK Info", "category": "Cowriting" }, { "command": "cowriting.createThread", "title": "Cowriting: Add Coauthoring Thread on Selection", "category": "Cowriting" }, { "command": "cowriting.reply", "title": "Reply", "category": "Cowriting" }, { "command": "cowriting.resolveThread", "title": "Resolve Thread", "category": "Cowriting" }, { "command": "cowriting.reopenThread", "title": "Reopen Thread", "category": "Cowriting" } ], "menus": { "comments/commentThread/context": [ { "command": "cowriting.reply", "group": "inline", "when": "commentController == cowriting.threads" } ], "comments/commentThread/title": [ { "command": "cowriting.resolveThread", "group": "inline", "when": "commentController == cowriting.threads && commentThread =~ /^open$/" }, { "command": "cowriting.reopenThread", "group": "inline", "when": "commentController == cowriting.threads && commentThread =~ /^resolved$/" } ] } }, "scripts": { "build": "node esbuild.mjs", "watch": "node esbuild.mjs --watch", "typecheck": "tsc --noEmit", "test": "vitest run", "vscode:prepublish": "node esbuild.mjs" }, "dependencies": { "@cline/sdk": "0.0.46" }, "devDependencies": { "@types/node": "^22.0.0", "@types/vscode": "^1.90.0", "esbuild": "^0.23.0", "typescript": "^5.5.0", "vitest": "^2.0.0" } }