-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.97 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
{
"name": "maho",
"displayName": "Maho",
"description": "Maho Intelligence LSP integration for the Maho ecommerce platform",
"version": "0.10.10",
"publisher": "mahocommerce",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mahocommerce/maho-vscode"
},
"engines": {
"vscode": "^1.101.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"keywords": [
"maho",
"ecommerce",
"magento",
"openmage",
"php"
],
"activationEvents": [
"workspaceContains:maho"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Maho",
"properties": {
"maho.phpCommand": {
"type": "string",
"default": "php",
"description": "PHP command prepended to `./maho dev:lsp:start` and `./maho dev:mcp:start`, run from the workspace root. Supports simple paths (e.g. `/usr/local/bin/php`) or Docker-style invocations. For Docker, pass `-i` to keep stdin open (the LSP server communicates over stdio and exits immediately without it) and `-w` to set the container working directory so `./maho` resolves (e.g. `docker exec -i -w /var/www/html mycontainer php`). Do not pass `-t`."
}
}
},
"mcpServerDefinitionProviders": [
{
"id": "maho-intelligence-mcp",
"label": "Maho Intelligence"
}
]
},
"scripts": {
"compile": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --sourcemap",
"watch": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --sourcemap --watch",
"package": "npm run compile && vsce package",
"typecheck": "tsc -p ./ --noEmit"
},
"dependencies": {
"vscode-languageclient": "^10.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.101.0",
"esbuild": "^0.28.1",
"typescript": "^5.7.0"
}
}