8000 Publish @roo-code/types to npm by cte · Pull Request #4059 · RooCodeInc/Roo-Code · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Publish @roo-code/types to npm #4059

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
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
36 changes: 29 additions & 7 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,35 @@
{
"name": "@roo-code/types",
"description": "Roo Code foundational types and schemas.",
"version": "0.0.0",
"type": "module",
"version": "1.15.0",
"description": "TypeScript type definitions for Roo Code.",
"publishConfig": {
"access": "public"
},
"author": "Roo Code Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RooCodeInc/Roo-Code.git"
},
"bugs": {
"url": "https://github.com/RooCodeInc/Roo-Code/issues"
},
"homepage": "https://github.com/RooCodeInc/Roo-Code/tree/main/packages/types",
"keywords": [
"roo",
"roo-code",
"ai"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
Expand All @@ -22,6 +41,9 @@
"check-types": "tsc --noEmit",
"test": "vitest --globals --run",
"build": "tsup",
"prepublishOnly": "pnpm run build",
"publish:test": "pnpm publish --dry-run",
"publish": "pnpm publish",
"clean": "rimraf dist .turbo"
},
"dependencies": {
Expand Down
Loading
0