-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 5.66 KB
/
package.json
File metadata and controls
177 lines (177 loc) · 5.66 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "@grifhinz/logics-manager",
"displayName": "Logics Orchestrator",
"description": "Visual orchestration for Logics workflows inside VS Code.",
"version": "2.3.0",
"publisher": "cdx-logics",
"icon": "clients/shared-web/media/icon.png",
"repository": {
"type": "git",
"url": "git+https://github.com/AlexAgo83/logics-manager.git"
},
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"bin": {
"logics-manager": "scripts/npm/logics-manager.mjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"LICENSE",
"VERSION",
"pyproject.toml",
"scripts/logics-manager.py",
"scripts/npm/",
"clients/shared-web/media/",
"clients/viewer/index.html",
"clients/viewer/browser-host.js",
"clients/viewer/viewer.css",
"dist/vendor/mermaid.min.js",
"logics_manager/*.py",
"logics_manager/**/*.py"
],
"contributes": {
"viewsContainers": {
"panel": [
{
"id": "logics",
"title": "Logics",
"icon": "clients/shared-web/media/logics.svg"
}
]
},
"views": {
"logics": [
{
"id": "logics.orchestrator",
"name": "Orchestrator",
"icon": "clients/shared-web/media/logics.svg",
"type": "webview"
}
]
},
"commands": [
{
"command": "logics.refresh",
"title": "Logics: Refresh"
},
{
"command": "logics.refreshAgents",
"title": "Logics: Refresh Agents"
},
{
"command": "logics.selectAgent",
"title": "Logics: Select Agent"
},
{
"command": "logics.open",
"title": "Logics: Open Item"
},
{
"command": "logics.promote",
"title": "Logics: Promote Item"
},
{
"command": "logics.newRequest",
"title": "Logics: New Request"
},
{
"command": "logics.createCompanionDoc",
"title": "Logics: Create Companion Doc"
},
{
"command": "logics.checkEnvironment",
"title": "Logics: Check Environment"
},
{
"command": "logics.openHybridInsights",
"title": "Logics: Open Hybrid Insights"
},
{
"command": "logics.openLogicsInsights",
"title": "Logics: Open Logics Insights"
},
{
"command": "logics.assistTriage",
"title": "Logics: Triage Item"
},
{
"command": "logics.assistDiffRisk",
"title": "Logics: Assess Diff Risk"
},
{
"command": "logics.assistValidationChecklist",
"title": "Logics: Build Validation Checklist"
},
{
"command": "logics.assistDocConsistency",
"title": "Logics: Review Doc Consistency"
}
]
},
"scripts": {
"bundle:extension": "node scripts/build/package-extension.mjs",
"watch:bundle": "node scripts/build/package-extension.mjs --watch",
"watch:types": "tsc -watch -p ./",
"compile": "tsc -p ./ && npm run bundle:extension",
"watch": "npm run watch:bundle",
"test": "vitest run",
"test:coverage:src": "node scripts/run-plugin-coverage.mjs src",
"test:coverage:media": "node scripts/run-plugin-coverage.mjs media",
"test:coverage": "npm run test:coverage:src && npm run test:coverage:media",
"test:smoke": "node tests/run_extension_smoke_checks.mjs",
"test:npm-cli": "node scripts/npm/logics-manager.mjs --help",
"test:lifecycle": "node tests/run_plugin_lifecycle_checks.mjs",
"test:watch": "vitest",
"lint": "npm run lint:ts && npm run lint:es",
"lint:ts": "tsc -p ./ --noEmit",
"lint:es": "eslint clients/vscode/src/**/*.ts",
"lint:logics": "node scripts/run-python.mjs -m logics_manager lint",
"audit:logics": "node scripts/run-python.mjs -m logics_manager audit && node scripts/run-python.mjs -m logics_manager lint",
"audit:logics:strict": "node scripts/run-python.mjs -m logics_manager audit --governance-profile strict && node scripts/run-python.mjs -m logics_manager lint --require-status",
"audit:ci": "node scripts/check-npm-audit.mjs",
"logics:finish:task": "node scripts/run-python.mjs -m logics_manager flow finish task",
"ci:fast": "npm run compile && npm run lint && npm run test:coverage && npm run test:smoke && npm run lint:logics && npm run package:ci",
"ci:check": "node scripts/ci-check.mjs",
"dev": "npm run compile && code --extensionDevelopmentPath=.",
"debug:webview": "node clients/viewer/debug-webview/server.mjs",
"package:ci": "node scripts/build/package-ci.mjs",
"package": "npm run compile && node scripts/build/package-release.mjs",
"package:npm": "node scripts/build/package-npm.mjs",
"install:vsix": "npm run package && node scripts/build/install-vsix.mjs",
"publish:npm": "node scripts/release/publish-npm.mjs",
"release:changelog:resolve": "node scripts/release/resolve-release-changelog.mjs --validate-current",
"release:changelog:validate": "node scripts/release/resolve-release-changelog.mjs --validate-current --require-curated"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vscode/vsce": "^3.9.1",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "^0.25.10",
"eslint": "^10.2.0",
"jsdom": "^25.0.1",
"mermaid": "^11.14.0",
"typescript": "^5.3.3",
"vitest": "^4.1.2",
"yaml": "^2.8.3",
"yauzl": "^3.2.0"
},
"overrides": {
"fast-uri": "3.1.2",
"minimatch@10.2.5": {
"brace-expansion": "5.0.6"
},
"qs": "6.15.2",
"ws": "8.21.0"
}
}