mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
This makes sure that if folks get a relatively recent `vscode.d.ts`. It also lets us safely bump up the target to es2024 so you can use all the latest lib additions
37 lines
726 B
JSON
37 lines
726 B
JSON
{
|
|
"name": "client",
|
|
"description": "The language client",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"version": "0.1.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.100.0"
|
|
},
|
|
"main": "./out/extension",
|
|
"browser": "./dist/web/extension",
|
|
"dependencies": {
|
|
"@vscode/wasm-wasi-lsp": "0.1.0-pre.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.100.0",
|
|
"@types/node": "^22"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc -b",
|
|
"watch": "tsc -b -w",
|
|
"lint": "eslint",
|
|
"esbuild": "^0.25.0"
|
|
}
|
|
} |