vscode-languageserver
Version:
Language server implementation for node
52 lines (51 loc) • 1.52 kB
JSON
{
"name": "vscode-languageserver",
"description": "Language server implementation for node",
"version": "10.1.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-languageserver-node.git",
"directory": "server"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
},
"exports": {
".": {
"types": "./lib/common/api.d.ts",
"default": "./lib/common/api.js"
},
"./node": {
"types": "./lib/node/main.d.ts",
"node": "./lib/node/main.js"
},
"./browser": {
"types": "./lib/browser/main.d.ts",
"browser": "./lib/browser/main.js"
}
},
"bin": {
"installServerIntoExtension": "./bin/installServerIntoExtension"
},
"devDependencies": {
"vscode-languageserver-textdocument": "1.0.13"
},
"dependencies": {
"vscode-languageserver-protocol": "3.18.2"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
"prepack": "npm run all:publish",
"compile": "tsc -b ./tsconfig.json",
"watch": "tsc -b ./tsconfig.watch.json -w",
"clean": "rimraf lib",
"lint": "eslint src",
"test": "node ../node_modules/mocha/bin/_mocha",
"all": "npm run clean && npm run compile && npm run lint && npm test",
"compile:publish": "tsc -b ./tsconfig.publish.json",
"all:publish": "git clean -xfd . && npm install && npm run compile:publish && npm run lint && npm test",
"preversion": "npm test"
}
}