-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (99 loc) · 2.31 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "codearcheo",
"publisher": "decyjphr",
"displayName": "Copilot Chat Extension for Code Archeology",
"description": "VSCode Copilot Chat Extension for Code Archeology",
"repository": {
"type": "git",
"url": "https://github.com/decyjphr/codearcheo"
},
"version": "0.1.0",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"AI",
"Chat"
],
"extensionDependencies": [
"github.copilot-chat",
"GitHub.vscode-codeql"
],
"activationEvents": [],
"contributes": {
"chatParticipants": [
{
"id": "codearcheo-vscode-chat",
"fullName": "Codearcheo",
"name": "codearcheo",
"description": " 🔍 Unlock secrets in your legacy code using Copilot chat",
"isSticky": true,
"commands": [
{
"name": "dig",
"description": "Do whatever you want..."
},
{
"name": "goals",
"description": "What are the goals of the project..."
},
{
"name": "triggers",
"description": "What are the triggers for the functionality..."
},
{
"name": "focus",
"description": "Focus on a program..."
}
]
},
{
"id": "legacynavigator.demo",
"name": "navigator",
"description": "Provide various commands that helps developers to migrate legacy code",
"commands": [
{
"name": "demystify",
"description": "Provides natural language explanation of the code to different personas"
},
{
"name": "structure",
"description": "Provides a graph representation of the code"
},
{
"name": "transform",
"description": "Transform snippets of legacy the code to a modern implementation"
}
]
}
],
"commands": [
{
"command": "codearcheo.namesInEditor",
"title": "Use Cat Names in Editor"
},
{
"command": "codearcheo.astInEditor",
"title": "Use AST in Editor"
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@vscode/prompt-tsx": "^0.2.6-alpha"
},
"devDependencies": {
"@types/node": "^22.2.0",
"typescript": "^5.5.4",
"@types/vscode": "1.90.0",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"@typescript-eslint/parser": "^7.14.0",
"eslint": "^8.26.0"
}
}