Files
vscode-extension-samples/lsp-user-input-sample/client/package.json
Matt Bierner 2ee6b0b7b9 Update all of our samples to target VSCode 1.100 or newer
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
2025-08-07 07:57:14 -07:00

24 lines
515 B
JSON

{
"name": "client",
"displayName": "Code Action UI Sample - Client",
"version": "1.0.0",
"private": true,
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
},
"engines": {
"vscode": "^1.100.0"
},
"devDependencies": {
"@types/vscode": "^1.100.0"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}