mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-04 17:08:42 +00:00
23 lines
738 B
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'"
|
|
}
|
|
}
|