architect-vscode 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "architect-vscode",
|
|
3
|
+
"displayName": "Architect Intelligence",
|
|
4
|
+
"description": "Enterprise architecture guardrail and AI autonomous agent orchestrator",
|
|
5
|
+
"version": "8.1.0",
|
|
6
|
+
"publisher": "camilooscargbaptista",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/camilooscargbaptista/architect.git"
|
|
10
|
+
},
|
|
11
|
+
"engines": {
|
|
12
|
+
"vscode": "^1.90.0"
|
|
13
|
+
},
|
|
14
|
+
"categories": [
|
|
15
|
+
"Machine Learning",
|
|
16
|
+
"Testing",
|
|
17
|
+
"Programming Languages"
|
|
18
|
+
],
|
|
19
|
+
"main": "./dist/extension.js",
|
|
20
|
+
"contributes": {
|
|
21
|
+
"commands": [
|
|
22
|
+
{
|
|
23
|
+
"command": "architect.analyze",
|
|
24
|
+
"title": "Architect: Analyze Security & Patterns"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"command": "architect.refactor",
|
|
28
|
+
"title": "Architect: Generate Refactoring Plan"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"activationEvents": [],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"vscode:prepublish": "npm run build",
|
|
35
|
+
"build": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
|
|
36
|
+
"watch": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --watch"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/vscode": "^1.90.0",
|
|
44
|
+
"esbuild": "^0.20.2",
|
|
45
|
+
"typescript": "^5.5.0",
|
|
46
|
+
"vsce": "^2.15.0"
|
|
47
|
+
}
|
|
48
|
+
}
|