Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions packages/types/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "@roo-code/types",
"version": "1.41.0",
"version": "1.42.0",
"description": "TypeScript type definitions for Roo Code.",
"publishConfig": {
"access": "public",
"name": "@roo-code/types"
"name": "@roo-code/types",
"registry": "https://registry.npmjs.org/"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the explicit registry specification intentional? Since is npm's default registry, this could be omitted for a cleaner configuration. However, it's not harmful and can provide clarity if that's the goal.

},
"author": "Roo Code Team",
"license": "MIT",
Expand All @@ -15,7 +16,7 @@
"bugs": {
"url": "https://github.com/RooCodeInc/Roo-Code/issues"
},
"homepage": "https://github.com/RooCodeInc/Roo-Code/tree/main/packages/types",
"homepage": "https://roocode.com",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The homepage change from the GitHub repository path to roocode.com provides a cleaner public-facing URL. Just noting that this reduces direct access to the source code location - was this intentional?

"keywords": [
"roo",
"roo-code",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@roo-code/types",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.cjs",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/types/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export default defineConfig({
entry: ["src/index.ts"],
format: ["cjs", "esm"],
dts: true,
clean: false,
splitting: false,
sourcemap: true,
clean: true,
outDir: "dist",
})
Loading