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