-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.21 KB
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
83
84
85
86
87
88
{
"name": "deeptab",
"displayName": "DeepTab",
"description": "Bring-your-own-key AI code completion",
"version": "0.1.0",
"publisher": "deeptab",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Tulipe1735/deeptab"
},
"bugs": {
"url": "https://github.com/Tulipe1735/deeptab/issues"
},
"homepage": "https://github.com/Tulipe1735/deeptab#readme",
"categories": [
"Programming Languages",
"Machine Learning",
"Other"
],
"keywords": [
"ai",
"code completion",
"copilot",
"deepseek",
"openai",
"gemini"
],
"markdown": "github",
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onLanguage"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "DeepTab",
"properties": {
"deeptab.apiKey": {
"type": "string",
"description": "API Key for the model provider"
},
"deeptab.model": {
"type": "string",
"default": "deepseek-chat",
"description": "Model to use for completions"
},
"deeptab.endpoint": {
"type": "string",
"description": "Override the default API endpoint"
},
"deeptab.temperature": {
"type": "number",
"default": 0.2,
"description": "Model temperature (0-2)"
},
"deeptab.maxTokens": {
"type": "number",
"default": 256,
"description": "Maximum tokens per completion"
}
}
}
},
"scripts": {
"build": "vite build --config vite.config.mjs",
"dev": "vite build --watch --config vite.config.mjs",
"test": "vitest run --config vitest.config.mjs",
"test:watch": "vitest --config vitest.config.mjs",
"package": "node ./node_modules/@vscode/vsce/out/main.js package",
"publish": "node ./node_modules/@vscode/vsce/out/main.js publish",
"vscode:prepublish": "npm run build"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.9.2",
"typescript": "^5.3.0",
"vite": "^5.4.0",
"vitest": "^1.6.0"
},
"dependencies": {
"dotenv": "^16.4.0"
}
}