-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 5.22 KB
/
Copy pathpackage.json
File metadata and controls
166 lines (166 loc) · 5.22 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
{
"name": "patchloom",
"displayName": "Patchloom",
"description": "VS Code extension for Patchloom. Installs, configures, and integrates the Patchloom CLI for editor-first workflows.",
"version": "0.0.1",
"publisher": "patchloom",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/patchloom/patchloom-vscode.git"
},
"homepage": "https://github.com/patchloom/patchloom-vscode#readme",
"bugs": {
"url": "https://github.com/patchloom/patchloom-vscode/issues"
},
"engines": {
"vscode": "^1.90.0",
"node": ">=20"
},
"icon": "images/logo-512.png",
"galleryBanner": {
"color": "#0d1b2a",
"theme": "dark"
},
"categories": [
"Formatters",
"Other"
],
"keywords": [
"patchloom",
"mcp",
"ai",
"agent",
"refactoring",
"codemod",
"json",
"yaml",
"markdown"
],
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished",
"onCommand:patchloom.initializeProject",
"onCommand:patchloom.setupWorkspace",
"onCommand:patchloom.configureMcp",
"onCommand:patchloom.quickAction",
"onCommand:patchloom.openPatchloomSettings",
"onCommand:patchloom.openPatchloomReleases",
"onCommand:patchloom.showStatus",
"onCommand:patchloom.batchApply",
"onCommand:patchloom.showOutput",
"onCommand:patchloom.installBinary",
"onCommand:patchloom.updateBinary",
"onCommand:patchloom.reinstallBinary"
],
"contributes": {
"commands": [
{
"command": "patchloom.initializeProject",
"title": "Initialize Project",
"category": "Patchloom"
},
{
"command": "patchloom.setupWorkspace",
"title": "Setup Workspace",
"category": "Patchloom"
},
{
"command": "patchloom.configureMcp",
"title": "Configure MCP",
"category": "Patchloom"
},
{
"command": "patchloom.quickAction",
"title": "Quick Action",
"category": "Patchloom"
},
{
"command": "patchloom.openPatchloomSettings",
"title": "Open Settings",
"category": "Patchloom"
},
{
"command": "patchloom.openPatchloomReleases",
"title": "Open Releases",
"category": "Patchloom"
},
{
"command": "patchloom.showStatus",
"title": "Show Status",
"category": "Patchloom"
},
{
"command": "patchloom.batchApply",
"title": "Batch Apply",
"category": "Patchloom"
},
{
"command": "patchloom.showOutput",
"title": "Show Output",
"category": "Patchloom"
},
{
"command": "patchloom.installBinary",
"title": "Install Patchloom",
"category": "Patchloom"
},
{
"command": "patchloom.updateBinary",
"title": "Update Patchloom",
"category": "Patchloom"
},
{
"command": "patchloom.reinstallBinary",
"title": "Reinstall Patchloom",
"category": "Patchloom"
}
],
"configuration": {
"title": "Patchloom",
"properties": {
"patchloom.path": {
"type": "string",
"default": "",
"markdownDescription": "Absolute path to the Patchloom binary. When empty, the extension searches `PATH` and then the managed install location."
},
"patchloom.showStatusBar": {
"type": "boolean",
"default": true,
"description": "Show a status bar item reporting whether Patchloom is available for the current workspace."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"compile-tests": "tsc -p ./tsconfig.test.json",
"compile-uitests": "tsc -p ./tsconfig.uitest.json",
"watch": "tsc -watch -p ./",
"test:unit": "node --test ./out-test/test/unit/*.test.js",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=80 --test-coverage-exclude='out-test/src/extension*' --test-coverage-exclude='out-test/src/commands/showStatus*' --test-coverage-exclude='out-test/src/commands/configureMcp*' --test-coverage-exclude='out-test/src/commands/setupWorkspace*' --test-coverage-exclude='out-test/src/status/statusBar*' --test-coverage-exclude='out-test/test/unit/patchloomCli*' ./out-test/test/unit/*.test.js",
"test:extension": "node ./out-test/test/suite/runExtensionTests.js",
"test:ui": "npm run compile && npm run compile-uitests && extest setup-and-run './out-uitest/test/ui/*.test.js' --code_version max --extensions_dir .vscode-test/extensions",
"test": "npm run compile && npm run compile-tests && npm run test:unit",
"test:all": "npm run compile && npm run compile-tests && npm run test:unit && npm run test:extension",
"vscode:prepublish": "npm run compile",
"package": "vsce package",
"check": "npm run test && npm run test:coverage && npm run package"
},
"overrides": {
"mocha": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5"
}
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.1",
"@types/vscode": "^1.90.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.0.0",
"ovsx": "^1.0.0",
"typescript": "^6.0.3",
"vscode-extension-tester": "^8.23.0"
}
}