diff options
Diffstat (limited to 'build/extension/package.json')
-rw-r--r-- | build/extension/package.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/build/extension/package.json b/build/extension/package.json new file mode 100644 index 00000000..13b1bcbf --- /dev/null +++ b/build/extension/package.json @@ -0,0 +1,35 @@ +{ + "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.0", + "@types/node": "^8.0.0", + "typescript": "2.8.3" + } +} |