mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
* WIP * Add custom add request * Update package.json * Component model resource example * Update to latest wit-bindgen * WIP * Minor example updates * Update wasm-lsp example * Added some minor comments * Minor renames * Change lsp server to count files * More model resource work * WIP * Make the example work * Update examples to latest * Update sample to latest tooling * Update sample to latest wit2ts tooling * WIP * Carry over https://github.com/microsoft/vscode-docs/pull/7234/files * Code cleanup * Remove dist folder * Remove another dist folder
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "wasm-language-server",
|
|
"description": "An example demonstrating how to implement a language server as a WebAssembly module.",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"version": "1.0.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"publisher": "vscode-samples",
|
|
"categories": [],
|
|
"keywords": [
|
|
"WASM",
|
|
"Component Model",
|
|
"LSP",
|
|
"Language Server"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.88.0"
|
|
},
|
|
"main": "./client/out/extension",
|
|
"browser": "./client/dist/web/extension",
|
|
"activationEvents": [
|
|
"onLanguage:bat"
|
|
],
|
|
"extensionDependencies": [
|
|
"ms-vscode.wasm-wasi-core"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "vscode-samples.wasm-language-server.countFiles",
|
|
"category": "Samples",
|
|
"title": "Count Files"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^7.6.0",
|
|
"@typescript-eslint/parser": "^7.6.0",
|
|
"@types/node": "^18.14.6",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.4.5",
|
|
"esbuild": "^0.20.2",
|
|
"serve": "^14.2.1"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "cd client && npm install && cd ..",
|
|
"vscode:prepublish": "npm run build",
|
|
"build": "cd client && npm run compile && cd ../server && npm run build && cd ..",
|
|
"lint": "cd client && npm run lint && cd .."
|
|
}
|
|
} |