-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 4.36 KB
/
package.json
File metadata and controls
156 lines (156 loc) · 4.36 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "tabcoder",
"displayName": "TabCoder",
"description": "AI-driven code suggestions",
"version": "0.0.2",
"engines": {
"vscode": "^1.74.0"
},
"author": {
"name": "Alexandre VILAIN"
},
"icon": "images/icon.png",
"publisher": "alexandrevilain",
"repository": {
"type": "git",
"url": "git+https://github.com/alexandrevilain/tabcoder.git"
},
"bugs": {
"url": "https://github.com/alexandrevilain/tabcoder/issues"
},
"homepage": "https://github.com/alexandrevilain/tabcoder/blob/main/README.md",
"license": "Apache-2.0",
"pricing": "Free",
"categories": [
"AI",
"Programming Languages"
],
"keywords": [
"ai",
"completion",
"ollama",
"openai",
"openrouter"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "tabcoder.createProfile",
"title": "$(add) Create New AI Profile",
"category": "TabCoder",
"description": "Set up a new AI provider configuration with API key, model selection, and custom settings"
},
{
"command": "tabcoder.setActiveProfile",
"title": "$(gear) Switch Active Profile",
"category": "TabCoder",
"description": "Choose which AI profile to use for code completions, or disable TabCoder entirely"
},
{
"command": "tabcoder.removeProfile",
"title": "$(trash) Delete Profile",
"category": "TabCoder",
"description": "Permanently remove an AI profile configuration from your settings"
}
],
"menus": {
"commandPalette": [
{
"command": "tabcoder.createProfile",
"when": "true"
},
{
"command": "tabcoder.setActiveProfile",
"when": "true"
},
{
"command": "tabcoder.removeProfile",
"when": "true"
}
]
},
"configuration": {
"title": "TabCoder",
"properties": {
"tabcoder.profiles": {
"type": "array",
"default": [],
"description": "Configuration profiles for TabCoder",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"provider": {
"type": "string"
},
"baseURL": {
"type": "string"
},
"modelId": {
"type": "string"
}
}
}
},
"tabcoder.activeProfileId": {
"type": "string",
"default": null,
"description": "ID of the currently active TabCoder profile"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"build": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"gen:licenses": "npx --yes generate-license-file --input ./package.json --output ./THIRD_PARTY_LICENSES.md --overwrite",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test",
"deploy": "vsce publish",
"package": "vsce package"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/node": "22.x",
"@types/sinon": "^17.0.4",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.46.3",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.6.0",
"chai": "^6.0.1",
"esbuild": "^0.25.11",
"eslint": "^9.38.0",
"npm-run-all": "^4.1.5",
"sinon": "^21.0.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^1.0.26",
"@ai-sdk/provider": "^2.0.0",
"@ai-sdk/provider-utils": "^3.0.15",
"ai": "^5.0.53",
"ai-sdk-mistral-fim": "^0.0.1",
"ai-sdk-ollama": "^0.5.1",
"uuid": "^11.1.0"
}
}