{ "name": "lua-lsp", "description": "A language server example", "author": "sumneko", "license": "MIT", "version": "0.0.1", "repository": { "type": "git", "url": "https://github.com/Microsoft/vscode-extension-samples" }, "publisher": "sumneko", "categories": [], "keywords": [ "multi-root ready" ], "engines": { "vscode": "^1.23.0" }, "activationEvents": [ "onLanguage:lua" ], "main": "./client/out/extension", "scripts": { "vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile", "compile:client": "tsc -p ./client/tsconfig.json", "watch:client": "tsc -w -p ./client/tsconfig.json", "compile": "npm run compile:client", "postinstall": "cd client && npm install && cd .." }, "devDependencies": { "@types/mocha": "^5.2.5", "@types/node": "^8.10.38", "typescript": "2.8.3" } }