-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "deepseek-web",
"displayName": "DeepSeek Web",
"description": "Embed DeepSeek Chat (https://chat.deepseek.com/) in VS Code.",
"version": "1.0.4",
"publisher": "Kingleo",
"repository": {
"type": "git",
"url": "https://github.com/KingLeoJr/vscode-deepseek-web.git"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:deepseek.openChat"
],
"main": "./out/extension.js",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"contributes": {
"configuration": {
"title": "DeepSeek Web",
"properties": {
"deepseekWeb.chatUrl": {
"type": "string",
"default": "https://chat.deepseek.com/",
"description": "The URL of the DeepSeek Chat instance to embed."
}
}
},
"commands": [
{
"command": "deepseek.openChat",
"title": "Open DeepSeek Chat"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "deepseekWeb",
"title": "DeepSeek Web",
"icon": "images/activitybar-icon.svg"
}
]
},
"views": {
"deepseekWeb": [
{
"id": "deepseekChatView",
"name": "DeepSeek Chat",
"type": "webview"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/vscode": "^1.75.0",
"typescript": "^4.9.4",
"vsce": "^2.15.0"
},
"keywords": [
"deepseek",
"chat",
"web",
"ai",
"assistant",
"vscode",
"extension"
],
"license": "MIT"
}