-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"publisher": "AsuByte",
"name": "code-context-ai",
"displayName": "Code Context AI",
"version": "2.0.5",
"type": "module",
"description": "AI-powered multi-repo pattern analysis.",
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/AsuByte/code-context-ai.git"
},
"engines": {
"vscode": "^1.109.1"
},
"categories": [
"AI",
"Programming Languages",
"Visualization"
],
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"vscode:prepublish": "node esbuild.js",
"compile": "node esbuild.js"
},
"icon": "media/icon.png",
"contributes": {
"commands": [
{
"command": "code-context.scanPatterns",
"title": "Code Context: Analyze project code"
},
{
"command": "code-context.showDashboard",
"title": "Code Context: Show dashboard"
}
]
},
"keywords": [
"vscode",
"extension",
"ai",
"code-analysis"
],
"author": "AsuByte",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.9",
"@types/vscode": "^1.108.1",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.25.12"
},
"dependencies": {
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"jspdf": "^4.0.0"
},
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8"
}