diff --git a/packages/types/README.md b/packages/types/README.md deleted file mode 100644 index 635c380139e..00000000000 --- a/packages/types/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# @roo-code/types - -### Publish to NPM - -First authenticate with NPM: - -```sh -npm login -``` - -Next, manually bump the NPM package version: - -```sh -cd packages/types/npm && npm version minor && cd - -``` - -Finally, publish to NPM: - -```sh -pnpm --filter @roo-code/types npm:publish -``` - -Note that you'll be asked for an MFA code to complete the publish. diff --git a/packages/types/npm/package.json b/packages/types/npm/package.json index 1dfbd576768..10a4805127a 100644 --- a/packages/types/npm/package.json +++ b/packages/types/npm/package.json @@ -1,6 +1,6 @@ { "name": "@roo-code/types", - "version": "1.42.0", + "version": "1.43.0", "description": "TypeScript type definitions for Roo Code.", "publishConfig": { "access": "public", @@ -37,5 +37,8 @@ }, "files": [ "dist" - ] + ], + "dependencies": { + "zod": "^3.25.61" + } } diff --git a/packages/types/package.json b/packages/types/package.json index e9ba5a28510..35d0560276a 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -18,8 +18,7 @@ "check-types": "tsc --noEmit", "test": "vitest run", "build": "tsup", - "npm:publish:test": "tsup --outDir npm/dist && cd npm && npm publish --dry-run", - "npm:publish": "tsup --outDir npm/dist && cd npm && npm publish", + "npm:publish": "cd npm && npm version minor && cd - && tsup --outDir npm/dist && cd npm && npm publish", "clean": "rimraf dist npm/dist .turbo" }, "dependencies": {