Path: blob/main/extensions/copilot/chat-lib/package.json
13383 views
{1"name": "@vscode/chat-lib",2"version": "0.0.0",3"description": "Chat and inline editing SDK extracted from VS Code Copilot Chat",4"main": "dist/src/main.js",5"types": "dist/src/main.d.ts",6"author": "Microsoft Corporation",7"repository": {8"type": "git",9"url": "https://github.com/microsoft/vscode-copilot-chat.git"10},11"license": "SEE LICENSE IN LICENSE.txt",12"engines": {13"node": ">=22.14.0"14},15"dependencies": {16"@microsoft/tiktokenizer": "^1.0.10",17"@sinclair/typebox": "^0.34.41",18"@vscode/copilot-api": "^0.2.19",19"@vscode/l10n": "^0.0.18",20"@vscode/prompt-tsx": "^0.4.0-alpha.8",21"@vscode/tree-sitter-wasm": "0.0.5-php.2",22"applicationinsights": "^2.9.7",23"jsonc-parser": "^3.3.1",24"monaco-editor": "0.44.0",25"openai": "^6.7.0",26"undici": "^7.24.1",27"vscode-languageserver-protocol": "^3.17.5",28"vscode-languageserver-textdocument": "^1.0.12",29"web-tree-sitter": "^0.23.0",30"yaml": "^2.8.0"31},32"devDependencies": {33"@anthropic-ai/sdk": "^0.82.0",34"@octokit/types": "^14.1.0",35"@types/node": "^22.16.3",36"copyfiles": "^2.4.1",37"dotenv": "^17.2.0",38"npm-run-all": "^4.1.5",39"outdent": "^0.8.0",40"rimraf": "^6.0.1",41"tsx": "^4.20.3",42"typescript": "^5.8.3",43"vitest": "^3.0.5"44},45"keywords": [46"chat",47"ai",48"sdk",49"vscode",50"copilot"51],52"files": [53"dist/src",54"README.md",55"LICENSE.txt",56"!**/test/**",57"dist/src/_internal/util/common/test/shims",58"script"59],60"scripts": {61"clean": "rimraf dist",62"build": "npm-run-all compile copy",63"compile": "tsc",64"copy": "copyfiles src/package.json \"src/**/*.tiktoken\" dist",65"package": "npm pack",66"postinstall": "tsx script/postinstall.js",67"publish": "npm publish",68"test": "vitest run",69"test:watch": "vitest"70}71}727374