-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.9 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.9 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
{
"name": "abbalochdev-ai-code-companion",
"displayName": "AI Code Companion - Personal",
"description": "Advanced AI-powered code analysis, documentation, and testing assistant for VS Code with intelligent multi-model routing",
"version": "0.2.2",
"publisher": "AbbalochDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abbalochdev/ai-code-companion.git"
},
"keywords": [
"ai",
"code-analysis",
"documentation",
"testing",
"productivity"
],
"icon": "images/icon.png",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Other",
"Programming Languages",
"Machine Learning"
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:mcp.showMenu",
"onCommand:mcp.analyzeWorkspace",
"onCommand:mcp.analyzeFile",
"onCommand:mcp.analyzeSelection"
],
"contributes": {
"configuration": {
"title": "AI Code Companion - Personal",
"properties": {
"aiCompanion.enableTelemetry": {
"type": "boolean",
"default": false,
"description": "Enable anonymous usage telemetry"
},
"aiCompanion.analysisDepth": {
"type": "string",
"default": "standard",
"enum": [
"light",
"standard",
"deep"
],
"description": "Depth of code analysis"
},
"aiCompanion.models": {
"type": "object",
"default": {
"code": "Claude",
"testing": "ChatGPT",
"documentation": "Gemini"
},
"description": "AI model assignments for different analysis types"
},
"aiCompanion.experimentalFeatures": {
"type": "boolean",
"default": false,
"description": "Enable experimental AI features"
},
"mcpServer.aiModels": {
"type": "object",
"default": {
"code": "claude",
"testing": "chatgpt",
"documentation": "gemini"
},
"description": "AI model assignments for different types of analysis"
},
"mcpServer.analysisDepth": {
"type": "string",
"enum": [
"basic",
"detailed",
"comprehensive"
],
"default": "detailed",
"description": "Depth of analysis to perform on workspace content"
}
}
},
"commands": [
{
"command": "mcp.showMenu",
"title": "AI Code Companion: Show Menu - Personal"
},
{
"command": "mcp.analyzeWorkspace",
"title": "AI Code Companion: Analyze Workspace - Personal"
},
{
"command": "mcp.analyzeFile",
"title": "AI Code Companion: Analyze Current File - Personal"
},
{
"command": "mcp.analyzeSelection",
"title": "AI Code Companion: Analyze Selection - Personal"
},
{
"command": "mcp.chooseModel",
"title": "AI Code Companion: Choose AI Model - Personal"
},
{
"command": "mcp.showLastAnalysis",
"title": "AI Code Companion: View Last Analysis - Personal"
},
{
"command": "mcp.analyzeSymbol",
"title": "AI Code Companion: Analyze Symbol - Personal"
}
]
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc",
"prepare": "npm run build",
"pretest-with-lint": "npm run lint",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^16.x",
"@types/sinon": "^17.0.4",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^5.x",
"@typescript-eslint/parser": "^5.x",
"eslint": "^8.x",
"jest": "^29.7.0",
"sinon": "^20.0.0",
"ts-jest": "^29.3.2",
"typescript": "^4.x"
}
}