oscript-vscode-plugin
Version:
Oscript support for writing Autonomous Agents in VS Code
33 lines (32 loc) • 983 B
JSON
{
"name": "vscode-languageserver",
"description": "Language server implementation for node",
"version": "5.2.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",
"bin": {
"installServerIntoExtension": "./bin/installServerIntoExtension"
},
"typings": "./lib/main",
"dependencies": {
"vscode-uri": "^1.0.6",
"vscode-languageserver-protocol": "3.14.1"
},
"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",
"clean": "node ../node_modules/rimraf/bin.js lib",
"test": "node ../node_modules/mocha/bin/_mocha",
"preversion": "npm test"
}
}