mcshader-lsp/server/package.json

23 lines
738 B
JSON

{
"name": "vscode-mc-shader-server",
"description": "A Language Server for linting/etc Minecraft GLSL Shaders",
"version": "0.8.0",
"author": "Noah Santschi-Cooney (Strum355)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Strum355/vscode-mc-shader"
},
"engines": {
"node": "*"
},
"dependencies": {
"vscode-languageserver": "^4.1.3"
},
"scripts": {
"installServer": "installServerIntoExtension ../client ./package.json ./tsconfig.json",
"compile": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -p .",
"watch": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -w -p .",
"lint": "tslint -c ../tslint.json 'src/**/*.ts'"
}
}