mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
30 lines
949 B
JSON
30 lines
949 B
JSON
{
|
|
"name": "vscode-languageserver-protocol",
|
|
"description": "VSCode Language Server Protocol implementation",
|
|
"version": "3.14.1",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-languageserver-node.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
|
|
},
|
|
"main": "./lib/main.js",
|
|
"typings": "./lib/main",
|
|
"dependencies": {
|
|
"vscode-jsonrpc": "^4.0.0",
|
|
"vscode-languageserver-types": "3.14.0"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run clean && npm run compile && npm test",
|
|
"postpublish": "node ../build/npm/post-publish.js",
|
|
"compile": "node ../build/bin/tsc -p ./tsconfig.json",
|
|
"watch": "node ../build/bin/tsc -w -p ./tsconfig.json",
|
|
"test": "node ../node_modules/mocha/bin/_mocha",
|
|
"clean": "node ../node_modules/rimraf/bin.js lib",
|
|
"preversion": "npm test"
|
|
}
|
|
}
|