mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-16 05:11:14 +01:00
ce1ec59f43
Bump @anthropic-ai/sdk in /extensions/copilot/chat-lib Bumps [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) from 0.82.0 to 0.91.1. - [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases) - [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.82.0...sdk-v0.91.1) --- updated-dependencies: - dependency-name: "@anthropic-ai/sdk" dependency-version: 0.91.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "@vscode/chat-lib",
|
|
"version": "0.0.0",
|
|
"description": "Chat and inline editing SDK extracted from VS Code Copilot Chat",
|
|
"main": "dist/src/main.js",
|
|
"types": "dist/src/main.d.ts",
|
|
"author": "Microsoft Corporation",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode-copilot-chat.git"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
"engines": {
|
|
"node": ">=22.14.0"
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/tiktokenizer": "^1.0.10",
|
|
"@sinclair/typebox": "^0.34.41",
|
|
"@vscode/copilot-api": "^0.2.19",
|
|
"@vscode/l10n": "^0.0.18",
|
|
"@vscode/prompt-tsx": "^0.4.0-alpha.8",
|
|
"@vscode/tree-sitter-wasm": "0.0.5-php.2",
|
|
"applicationinsights": "^2.9.7",
|
|
"jsonc-parser": "^3.3.1",
|
|
"monaco-editor": "0.44.0",
|
|
"openai": "^6.7.0",
|
|
"undici": "^7.24.1",
|
|
"vscode-languageserver-protocol": "^3.17.5",
|
|
"vscode-languageserver-textdocument": "^1.0.12",
|
|
"web-tree-sitter": "^0.23.0",
|
|
"yaml": "^2.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@anthropic-ai/sdk": "^0.91.1",
|
|
"@octokit/types": "^14.1.0",
|
|
"@types/node": "^22.16.3",
|
|
"copyfiles": "^2.4.1",
|
|
"dotenv": "^17.2.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"outdent": "^0.8.0",
|
|
"rimraf": "^6.0.1",
|
|
"tsx": "^4.20.3",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.0.5"
|
|
},
|
|
"keywords": [
|
|
"chat",
|
|
"ai",
|
|
"sdk",
|
|
"vscode",
|
|
"copilot"
|
|
],
|
|
"files": [
|
|
"dist/src",
|
|
"README.md",
|
|
"LICENSE.txt",
|
|
"!**/test/**",
|
|
"dist/src/_internal/util/common/test/shims",
|
|
"script"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "npm-run-all compile copy",
|
|
"compile": "tsc",
|
|
"copy": "copyfiles src/package.json \"src/**/*.tiktoken\" dist",
|
|
"package": "npm pack",
|
|
"postinstall": "tsx script/postinstall.js",
|
|
"publish": "npm publish",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
}
|
|
}
|