Files
vscode-extension-samples/lsp-sample/package.json

66 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2017-11-22 13:38:21 +01:00
{
"name": "lsp-sample",
2017-11-22 13:38:21 +01:00
"description": "A language server example",
"author": "Microsoft Corporation",
"license": "MIT",
"version": "1.0.0",
2017-11-22 13:38:21 +01:00
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"publisher": "vscode-samples",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
2023-02-28 10:19:15 +01:00
"vscode": "^1.75.0"
},
2023-01-20 08:35:03 -08:00
"activationEvents": [
"onLanguage:plaintext"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
2018-07-01 00:19:23 -07:00
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
2017-11-22 13:38:21 +01:00
"scripts": {
"vscode:prepublish": "npm run compile",
2018-10-26 11:15:09 +02:00
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
2018-06-25 02:14:44 -07:00
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
2018-06-25 22:04:05 -07:00
"test": "sh ./scripts/e2e.sh"
2017-11-22 13:38:21 +01:00
},
"devDependencies": {
2022-03-01 09:53:31 +01:00
"@types/mocha": "^9.1.0",
2022-05-24 15:12:22 -07:00
"@types/node": "^16.11.7",
2023-02-28 10:19:15 +01:00
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
2022-03-01 09:53:31 +01:00
"mocha": "^9.2.1",
2023-03-20 14:42:14 -07:00
"typescript": "^5.0.2"
2017-11-22 13:38:21 +01:00
}
}