-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "claude",
"publisher": "vscode-samples",
"displayName": "Claude",
"description": "Sample chat extension, a trusty cat tutor that will can teach you computer science topics.",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"version": "0.1.0",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"AI",
"Chat"
],
"enabledApiProposals": [
"chatProvider"
],
"activationEvents": ["onStartupFinished"],
"contributes": {
"languageModels":[
{
"vendor": "Anthropic"
}
],
"chatParticipants": [
{
"id": "vscode-samples.claude",
"fullName": "Claude",
"name": "claude",
"description": "What do you need help with?",
"isSticky": true,
"commands": [],
"disambiguation": []
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@anthropic-ai/sdk": "^1.0.0",
"dotenv": "^10.0.0",
"openai": "^4.60.0"
},
"devDependencies": {
"@types/node": "^20.5.9",
"@types/vscode": "1.90.0",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"@typescript-eslint/parser": "^7.14.0",
"eslint": "^8.26.0",
"typescript": "^5.5.2"
}
}