diff --git a/Cargo.toml b/Cargo.toml index 265d60d..87ba777 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,6 @@ members = ["crates/chorus-relay"] edition = "2021" license = "MIT" authors = ["Steven Roomberg"] +description = "Collaborative OpenCode session sharing. Pair-program a live AI session from another OpenCode instance in real time." +repository = "https://github.com/sroomberg/chorus" +homepage = "https://github.com/sroomberg/chorus" diff --git a/package.json b/package.json index 98932f9..a612396 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,25 @@ { "name": "chorus", + "description": "Collaborative OpenCode session sharing. Pair-program a live AI session from another OpenCode instance in real time.", "private": true, + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/sroomberg/chorus.git" + }, + "bugs": { + "url": "https://github.com/sroomberg/chorus/issues" + }, + "homepage": "https://github.com/sroomberg/chorus#readme", + "keywords": [ + "opencode", + "pair-programming", + "collaboration", + "websocket", + "ai-coding", + "coding-agent", + "plugin" + ], "packageManager": "bun@1.3.14", "workspaces": [ "packages/*" diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 699eb47..686bdf4 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,7 +1,24 @@ { "name": "@chorus/plugin", "version": "2.0.0", + "description": "OpenCode plugin for collaborative session sharing via chorus-relay.", "private": true, + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/sroomberg/chorus.git", + "directory": "packages/plugin" + }, + "bugs": { + "url": "https://github.com/sroomberg/chorus/issues" + }, + "homepage": "https://github.com/sroomberg/chorus#readme", + "keywords": [ + "opencode", + "pair-programming", + "collaboration", + "plugin" + ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/shared/package.json b/packages/shared/package.json index 0aa14fb..f204c0f 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,7 +1,24 @@ { "name": "@chorus/shared", "version": "0.1.0", + "description": "Shared TypeScript types and protocol codecs for Chorus.", "private": true, + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/sroomberg/chorus.git", + "directory": "packages/shared" + }, + "bugs": { + "url": "https://github.com/sroomberg/chorus/issues" + }, + "homepage": "https://github.com/sroomberg/chorus#readme", + "keywords": [ + "opencode", + "chorus", + "protocol", + "websocket" + ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts",