Skip to content
Closed
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
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"dist": true // set this to false to include "dist" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",
"postman.settings.dotenv-detection-notification-visibility": false
}
38 changes: 30 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 57 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,40 +257,65 @@
}
]
},
"configuration": {
"title": "Roo Code",
"properties": {
"roo-cline.allowedCommands": {
"type": "array",
"items": {
"type": "string"
"configuration": [
{
"title": "Roo Code",
"properties": {
"roo-cline.allowedCommands": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"npm test",
"npm install",
"tsc",
"git log",
"git diff",
"git show"
],
"description": "Commands that can be auto-executed when 'Always approve execute operations' is enabled"
},
"default": [
"npm test",
"npm install",
"tsc",
"git log",
"git diff",
"git show"
],
"description": "Commands that can be auto-executed when 'Always approve execute operations' is enabled"
},
"roo-cline.vsCodeLmModelSelector": {
"type": "object",
"properties": {
"vendor": {
"type": "string",
"description": "The vendor of the language model (e.g. copilot)"
"roo-cline.vsCodeLmModelSelector": {
"type": "object",
"properties": {
"vendor": {
"type": "string",
"description": "The vendor of the language model (e.g. copilot)"
},
"family": {
"type": "string",
"description": "The family of the language model (e.g. gpt-4)"
}
},
"family": {
"type": "string",
"description": "The family of the language model (e.g. gpt-4)"
}
"description": "Settings for VSCode Language Model API"
}
}
},
{
"title": "Roo Code > Debug",
Copy link
Collaborator

Choose a reason for hiding this comment

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

I'm not sure this is worth adding unless it's more generic.

"properties": {
"roo-cline.debug.mistral": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable debug logging for Mistral API interactions. Logs will appear in the 'Roo Code Mistral' output channel.",
"scope": "window"
},
"description": "Settings for VSCode Language Model API"
"roo-cline.debug.mistralVerbose": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable verbose debug logging for Mistral API interactions, including request/response details. Logs will appear in the 'Roo Code Mistral Verbose' output channel.",
"scope": "window"
},
"roo-cline.debug.mistralSdk": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable debug logging for Mistral SDK internal operations. Logs will appear in the output channel.",
"scope": "window"
}
}
}
}
]
},
"scripts": {
"build": "npm run vsix",
Expand Down Expand Up @@ -322,6 +347,7 @@
"prepare": "husky",
"publish:marketplace": "vsce publish && ovsx publish",
"publish": "npm run build && changeset publish && npm install --package-lock-only",
"tidy-commits": "bash scripts/tidy-commits.sh",
"version-packages": "changeset version && npm install --package-lock-only",
"vscode:prepublish": "npm run package",
"vsix": "rimraf bin && mkdirp bin && npx vsce package --out bin",
Expand All @@ -345,7 +371,7 @@
"@aws-sdk/client-bedrock-runtime": "^3.706.0",
"@google-cloud/vertexai": "^1.9.3",
"@google/generative-ai": "^0.18.0",
"@mistralai/mistralai": "^1.3.6",
"@mistralai/mistralai": "^1.5.2",
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/clone-deep": "^4.0.4",
"@types/pdf-parse": "^1.1.4",
Expand Down Expand Up @@ -393,7 +419,7 @@
"tree-sitter-wasms": "^0.1.11",
"turndown": "^7.2.0",
"web-tree-sitter": "^0.22.6",
"zod": "^3.23.8"
"zod": "^3.24.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
Expand Down
Loading
Loading